Interface CfnGlobalTable.ReadOnDemandThroughputSettingsProperty

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

@Stability(Stable) public static interface CfnGlobalTable.ReadOnDemandThroughputSettingsProperty extends software.amazon.jsii.JsiiSerializable
Sets the read request settings for a replica table or a replica 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.*;
 ReadOnDemandThroughputSettingsProperty readOnDemandThroughputSettingsProperty = ReadOnDemandThroughputSettingsProperty.builder()
         .maxReadRequestUnits(123)
         .build();
 

See Also: