Interface UpdateGlobalTableSettingsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<UpdateGlobalTableSettingsResponse.Builder,UpdateGlobalTableSettingsResponse>,DynamoDbResponse.Builder,SdkBuilder<UpdateGlobalTableSettingsResponse.Builder,UpdateGlobalTableSettingsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- UpdateGlobalTableSettingsResponse
@Mutable @NotThreadSafe public static interface UpdateGlobalTableSettingsResponse.Builder extends DynamoDbResponse.Builder, SdkPojo, CopyableBuilder<UpdateGlobalTableSettingsResponse.Builder,UpdateGlobalTableSettingsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateGlobalTableSettingsResponse.BuilderglobalTableName(String globalTableName)The name of the global table.UpdateGlobalTableSettingsResponse.BuilderreplicaSettings(Collection<ReplicaSettingsDescription> replicaSettings)The Region-specific settings for the global table.UpdateGlobalTableSettingsResponse.BuilderreplicaSettings(Consumer<ReplicaSettingsDescription.Builder>... replicaSettings)The Region-specific settings for the global table.UpdateGlobalTableSettingsResponse.BuilderreplicaSettings(ReplicaSettingsDescription... replicaSettings)The Region-specific settings for the global table.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.dynamodb.model.DynamoDbResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
globalTableName
UpdateGlobalTableSettingsResponse.Builder globalTableName(String globalTableName)
The name of the global table.
- Parameters:
globalTableName- The name of the global table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
replicaSettings
UpdateGlobalTableSettingsResponse.Builder replicaSettings(Collection<ReplicaSettingsDescription> replicaSettings)
The Region-specific settings for the global table.
- Parameters:
replicaSettings- The Region-specific settings for the global table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
replicaSettings
UpdateGlobalTableSettingsResponse.Builder replicaSettings(ReplicaSettingsDescription... replicaSettings)
The Region-specific settings for the global table.
- Parameters:
replicaSettings- The Region-specific settings for the global table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
replicaSettings
UpdateGlobalTableSettingsResponse.Builder replicaSettings(Consumer<ReplicaSettingsDescription.Builder>... replicaSettings)
The Region-specific settings for the global table.
This is a convenience method that creates an instance of theReplicaSettingsDescription.Builderavoiding the need to create one manually viaReplicaSettingsDescription.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#replicaSettings(List.) - Parameters:
replicaSettings- a consumer that will call methods onReplicaSettingsDescription.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#replicaSettings(java.util.Collection)
-
-