Interface OnDemandThroughput.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<OnDemandThroughput.Builder,OnDemandThroughput>
,SdkBuilder<OnDemandThroughput.Builder,OnDemandThroughput>
,SdkPojo
- Enclosing class:
- OnDemandThroughput
public static interface OnDemandThroughput.Builder extends SdkPojo, CopyableBuilder<OnDemandThroughput.Builder,OnDemandThroughput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OnDemandThroughput.Builder
maxReadRequestUnits(Long maxReadRequestUnits)
Maximum number of read request units for the specified table.OnDemandThroughput.Builder
maxWriteRequestUnits(Long maxWriteRequestUnits)
Maximum number of write request units for the specified table.-
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
-
maxReadRequestUnits
OnDemandThroughput.Builder maxReadRequestUnits(Long maxReadRequestUnits)
Maximum number of read request units for the specified table.
To specify a maximum
OnDemandThroughput
on your table, set the value ofMaxReadRequestUnits
as greater than or equal to 1. To remove the maximumOnDemandThroughput
that is currently set on your table, set the value ofMaxReadRequestUnits
to -1.- Parameters:
maxReadRequestUnits
- Maximum number of read request units for the specified table.To specify a maximum
OnDemandThroughput
on your table, set the value ofMaxReadRequestUnits
as greater than or equal to 1. To remove the maximumOnDemandThroughput
that is currently set on your table, set the value ofMaxReadRequestUnits
to -1.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxWriteRequestUnits
OnDemandThroughput.Builder maxWriteRequestUnits(Long maxWriteRequestUnits)
Maximum number of write request units for the specified table.
To specify a maximum
OnDemandThroughput
on your table, set the value ofMaxWriteRequestUnits
as greater than or equal to 1. To remove the maximumOnDemandThroughput
that is currently set on your table, set the value ofMaxWriteRequestUnits
to -1.- Parameters:
maxWriteRequestUnits
- Maximum number of write request units for the specified table.To specify a maximum
OnDemandThroughput
on your table, set the value ofMaxWriteRequestUnits
as greater than or equal to 1. To remove the maximumOnDemandThroughput
that is currently set on your table, set the value ofMaxWriteRequestUnits
to -1.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-