interface RetentionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnTableOptimizerPropsMixin.RetentionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnTableOptimizerPropsMixin_RetentionConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnTableOptimizerPropsMixin.RetentionConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnTableOptimizerPropsMixin.RetentionConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » 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 { aws_glue as glue } from '@aws-cdk/cfn-property-mixins';
const retentionConfigurationProperty: glue.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