Interface CfnGlobalTablePropsMixin.TimeToLiveSpecificationProperty

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

@Stability(Stable) public static interface CfnGlobalTablePropsMixin.TimeToLiveSpecificationProperty extends software.amazon.jsii.JsiiSerializable
Represents the settings used to enable or disable Time to Live (TTL) for the specified table.

All replicas will have the same time to live configuration.

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.dynamodb.*;
 TimeToLiveSpecificationProperty timeToLiveSpecificationProperty = TimeToLiveSpecificationProperty.builder()
         .attributeName("attributeName")
         .enabled(false)
         .build();
 

See Also: