Interface Capacity.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<Capacity.Builder,Capacity>
,SdkBuilder<Capacity.Builder,Capacity>
,SdkPojo
- Enclosing class:
- Capacity
public static interface Capacity.Builder extends SdkPojo, CopyableBuilder<Capacity.Builder,Capacity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Capacity.Builder
capacityUnits(Double capacityUnits)
The total number of capacity units consumed on a table or an index.Capacity.Builder
readCapacityUnits(Double readCapacityUnits)
The total number of read capacity units consumed on a table or an index.Capacity.Builder
writeCapacityUnits(Double writeCapacityUnits)
The total number of write capacity units consumed on a table or an index.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
readCapacityUnits
Capacity.Builder readCapacityUnits(Double readCapacityUnits)
The total number of read capacity units consumed on a table or an index.
- Parameters:
readCapacityUnits
- The total number of read capacity units consumed on a table or an index.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
writeCapacityUnits
Capacity.Builder writeCapacityUnits(Double writeCapacityUnits)
The total number of write capacity units consumed on a table or an index.
- Parameters:
writeCapacityUnits
- The total number of write capacity units consumed on a table or an index.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
capacityUnits
Capacity.Builder capacityUnits(Double capacityUnits)
The total number of capacity units consumed on a table or an index.
- Parameters:
capacityUnits
- The total number of capacity units consumed on a table or an index.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-