Interface CfnTable.ProvisionedThroughputProperty

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

@Stability(Stable) public static interface CfnTable.ProvisionedThroughputProperty extends software.amazon.jsii.JsiiSerializable
Throughput for the specified table, which consists of values for ReadCapacityUnits and WriteCapacityUnits .

For more information about the contents of a provisioned throughput structure, see Amazon DynamoDB Table ProvisionedThroughput .

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

See Also: