interface IcebergConfigurationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Glue.CfnTableOptimizer.IcebergConfigurationProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnTableOptimizer_IcebergConfigurationProperty |
![]() | software.amazon.awscdk.services.glue.CfnTableOptimizer.IcebergConfigurationProperty |
![]() | aws_cdk.aws_glue.CfnTableOptimizer.IcebergConfigurationProperty |
![]() | aws-cdk-lib » aws_glue » CfnTableOptimizer » 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-lib';
const icebergConfigurationProperty: glue.CfnTableOptimizer.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.