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.

The oldest snapshot expires when its age exceeds the maxSnapshotAgeHours and the total number of snapshots exceeds the value for the minimum number of snapshots to keep minSnapshotsToKeep .

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: