interface SnapshotManagementProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.aws_s3tables.CfnTable.SnapshotManagementProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3tables#CfnTable_SnapshotManagementProperty | 
|  Java | software.amazon.awscdk.services.s3tables.CfnTable.SnapshotManagementProperty | 
|  Python | aws_cdk.aws_s3tables.CfnTable.SnapshotManagementProperty | 
|  TypeScript | aws-cdk-lib»aws_s3tables»CfnTable»SnapshotManagementProperty | 
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 { 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 | The status of the maintenance configuration. | 
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)
The status of the maintenance configuration.
