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