Interface CfnTable.TimeToLiveSpecificationProperty

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

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

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