Interface CfnTablePropsMixin.ProvisionedThroughputProperty

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

@Stability(Stable) public static interface CfnTablePropsMixin.ProvisionedThroughputProperty extends software.amazon.jsii.JsiiSerializable
The provisioned throughput for the table, which consists of ReadCapacityUnits and WriteCapacityUnits .

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.cassandra.*;
 ProvisionedThroughputProperty provisionedThroughputProperty = ProvisionedThroughputProperty.builder()
         .readCapacityUnits(123)
         .writeCapacityUnits(123)
         .build();
 

See Also: