Interface CfnTable.RetentionPropertiesProperty

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

@Stability(Stable) public static interface CfnTable.RetentionPropertiesProperty extends software.amazon.jsii.JsiiSerializable
Retention properties contain the duration for which your time-series data must be stored in the magnetic store and the memory store.

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.timestream.*;
 RetentionPropertiesProperty retentionPropertiesProperty = RetentionPropertiesProperty.builder()
         .magneticStoreRetentionPeriodInDays("magneticStoreRetentionPeriodInDays")
         .memoryStoreRetentionPeriodInHours("memoryStoreRetentionPeriodInHours")
         .build();
 

See Also: