interface RetentionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnTableOptimizerPropsMixin.RetentionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnTableOptimizerPropsMixin_RetentionConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnTableOptimizerPropsMixin.RetentionConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnTableOptimizerPropsMixin.RetentionConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnTableOptimizerPropsMixin » RetentionConfigurationProperty |
The configuration for a snapshot retention optimizer for Apache Iceberg tables.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const retentionConfigurationProperty: glue_mixins.CfnTableOptimizerPropsMixin.RetentionConfigurationProperty = {
icebergConfiguration: {
cleanExpiredFiles: false,
numberOfSnapshotsToRetain: 123,
snapshotRetentionPeriodInDays: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| iceberg | IResolvable | Iceberg | The configuration for an Iceberg snapshot retention optimizer. |
icebergConfiguration?
Type:
IResolvable | Iceberg
(optional)
The configuration for an Iceberg snapshot retention optimizer.

.NET
Go
Java
Python
TypeScript