Interface CfnTable.SnapshotManagementProperty

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

@Stability(Stable) public static interface CfnTable.SnapshotManagementProperty extends software.amazon.jsii.JsiiSerializable
Contains details about the snapshot management settings for an Iceberg table.

A snapshot is expired when it exceeds MinSnapshotsToKeep and MaxSnapshotAgeHours.

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.s3tables.*;
 SnapshotManagementProperty snapshotManagementProperty = SnapshotManagementProperty.builder()
         .maxSnapshotAgeHours(123)
         .minSnapshotsToKeep(123)
         .status("status")
         .build();
 

See Also: