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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTable.SnapshotManagementPropertystatic final classAn 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
The status of the maintenance configuration.- See Also:
-
builder
-