interface IcebergConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnTableOptimizerPropsMixin.IcebergConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnTableOptimizerPropsMixin_IcebergConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnTableOptimizerPropsMixin.IcebergConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnTableOptimizerPropsMixin.IcebergConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnTableOptimizerPropsMixin » IcebergConfigurationProperty |
IcebergConfiguration is a property type within the AWS::Glue::TableOptimizer resource in AWS CloudFormation.
This configuration is used when setting up table optimization for Iceberg tables in AWS Glue .
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 icebergConfigurationProperty: glue_mixins.CfnTableOptimizerPropsMixin.IcebergConfigurationProperty = {
location: 'location',
orphanFileRetentionPeriodInDays: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| location? | string | Specifies a directory in which to look for orphan files (defaults to the table's location). |
| orphan | number | The specific number of days you want to keep the orphan files. |
location?
Type:
string
(optional)
Specifies a directory in which to look for orphan files (defaults to the table's location).
You may choose a sub-directory rather than the top-level table location.
orphanFileRetentionPeriodInDays?
Type:
number
(optional)
The specific number of days you want to keep the orphan files.

.NET
Go
Java
Python
TypeScript