Interface CfnTable.OnDemandThroughputProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTable.OnDemandThroughputProperty.Jsii$Proxy
Enclosing class:
CfnTable

@Stability(Stable) public static interface CfnTable.OnDemandThroughputProperty extends software.amazon.jsii.JsiiSerializable
Sets the maximum number of read and write units for the specified on-demand table.

If you use this property, you must specify MaxReadRequestUnits , MaxWriteRequestUnits , or both.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.dynamodb.*;
 OnDemandThroughputProperty onDemandThroughputProperty = OnDemandThroughputProperty.builder()
         .maxReadRequestUnits(123)
         .maxWriteRequestUnits(123)
         .build();
 

See Also: