Interface CfnGlobalTable.WriteOnDemandThroughputSettingsProperty

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

@Stability(Stable) public static interface CfnGlobalTable.WriteOnDemandThroughputSettingsProperty extends software.amazon.jsii.JsiiSerializable
Sets the write request settings for a global table or a global secondary index.

You must specify this setting if you set the BillingMode to PAY_PER_REQUEST .

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.*;
 WriteOnDemandThroughputSettingsProperty writeOnDemandThroughputSettingsProperty = WriteOnDemandThroughputSettingsProperty.builder()
         .maxWriteRequestUnits(123)
         .build();
 

See Also: