Interface CfnTable.BillingModeProperty

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

@Stability(Stable) public static interface CfnTable.BillingModeProperty extends software.amazon.jsii.JsiiSerializable
Determines the billing mode for the table - on-demand or provisioned.

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.cassandra.*;
 BillingModeProperty billingModeProperty = BillingModeProperty.builder()
         .mode("mode")
         // the properties below are optional
         .provisionedThroughput(ProvisionedThroughputProperty.builder()
                 .readCapacityUnits(123)
                 .writeCapacityUnits(123)
                 .build())
         .build();
 

See Also: