interface SnapshotManagementProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_s3tables.CfnTable.SnapshotManagementProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awss3tables#CfnTable_SnapshotManagementProperty |
![]() | software.amazon.awscdk.services.s3tables.CfnTable.SnapshotManagementProperty |
![]() | aws_cdk.aws_s3tables.CfnTable.SnapshotManagementProperty |
![]() | aws-cdk-lib » aws_s3tables » CfnTable » SnapshotManagementProperty |
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 { aws_s3tables as s3tables } from 'aws-cdk-lib';
const snapshotManagementProperty: s3tables.CfnTable.SnapshotManagementProperty = {
maxSnapshotAgeHours: 123,
minSnapshotsToKeep: 123,
status: 'status',
};
Properties
Name | Type | Description |
---|---|---|
max | number | The maximum age of a snapshot before it can be expired. |
min | number | The minimum number of snapshots to keep. |
status? | string | Indicates whether the SnapshotManagement maintenance action is enabled. |
maxSnapshotAgeHours?
Type:
number
(optional)
The maximum age of a snapshot before it can be expired.
minSnapshotsToKeep?
Type:
number
(optional)
The minimum number of snapshots to keep.
status?
Type:
string
(optional)
Indicates whether the SnapshotManagement maintenance action is enabled.