Interface CfnTablePropsMixin.PointInTimeRecoverySpecificationProperty

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

@Stability(Stable) public static interface CfnTablePropsMixin.PointInTimeRecoverySpecificationProperty extends software.amazon.jsii.JsiiSerializable
The settings used to enable point in time recovery.

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.*;
 PointInTimeRecoverySpecificationProperty pointInTimeRecoverySpecificationProperty = PointInTimeRecoverySpecificationProperty.builder()
         .pointInTimeRecoveryEnabled(false)
         .recoveryPeriodInDays(123)
         .build();
 

See Also: