Interface CfnTablePropsMixin.OnDemandThroughputProperty

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

@Stability(Stable) public static interface CfnTablePropsMixin.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.cfnpropertymixins.services.dynamodb.*;
 OnDemandThroughputProperty onDemandThroughputProperty = OnDemandThroughputProperty.builder()
         .maxReadRequestUnits(123)
         .maxWriteRequestUnits(123)
         .build();
 

See Also: