Interface ReplicaSpecification.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ReplicaSpecification.Builder,ReplicaSpecification>,SdkBuilder<ReplicaSpecification.Builder,ReplicaSpecification>,SdkPojo
- Enclosing class:
- ReplicaSpecification
public static interface ReplicaSpecification.Builder extends SdkPojo, CopyableBuilder<ReplicaSpecification.Builder,ReplicaSpecification>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ReplicaSpecification.BuilderreadCapacityAutoScaling(Consumer<AutoScalingSettings.Builder> readCapacityAutoScaling)The read capacity auto scaling settings for the multi-Region table in the specified Amazon Web Services Region.ReplicaSpecification.BuilderreadCapacityAutoScaling(AutoScalingSettings readCapacityAutoScaling)The read capacity auto scaling settings for the multi-Region table in the specified Amazon Web Services Region.ReplicaSpecification.BuilderreadCapacityUnits(Long readCapacityUnits)The provisioned read capacity units for the multi-Region table in the specified Amazon Web Services Region.ReplicaSpecification.Builderregion(String region)The Amazon Web Services Region.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
region
ReplicaSpecification.Builder region(String region)
The Amazon Web Services Region.
- Parameters:
region- The Amazon Web Services Region.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
readCapacityUnits
ReplicaSpecification.Builder readCapacityUnits(Long readCapacityUnits)
The provisioned read capacity units for the multi-Region table in the specified Amazon Web Services Region.
- Parameters:
readCapacityUnits- The provisioned read capacity units for the multi-Region table in the specified Amazon Web Services Region.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
readCapacityAutoScaling
ReplicaSpecification.Builder readCapacityAutoScaling(AutoScalingSettings readCapacityAutoScaling)
The read capacity auto scaling settings for the multi-Region table in the specified Amazon Web Services Region.
- Parameters:
readCapacityAutoScaling- The read capacity auto scaling settings for the multi-Region table in the specified Amazon Web Services Region.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
readCapacityAutoScaling
default ReplicaSpecification.Builder readCapacityAutoScaling(Consumer<AutoScalingSettings.Builder> readCapacityAutoScaling)
The read capacity auto scaling settings for the multi-Region table in the specified Amazon Web Services Region.
This is a convenience method that creates an instance of theAutoScalingSettings.Builderavoiding the need to create one manually viaAutoScalingSettings.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toreadCapacityAutoScaling(AutoScalingSettings).- Parameters:
readCapacityAutoScaling- a consumer that will call methods onAutoScalingSettings.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
readCapacityAutoScaling(AutoScalingSettings)
-
-