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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTable.SnapshotManagementProperty
static final class
An implementation forCfnTable.SnapshotManagementProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMaxSnapshotAgeHours
The maximum age of a snapshot before it can be expired.- See Also:
-
getMinSnapshotsToKeep
The minimum number of snapshots to keep.- See Also:
-
getStatus
Indicates whether the SnapshotManagement maintenance action is enabled.- See Also:
-
builder
-