interface CompactionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3Tables.Mixins.CfnTablePropsMixin.CompactionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3tables/mixins#CfnTablePropsMixin_CompactionProperty |
Java | software.amazon.awscdk.mixins.preview.services.s3tables.mixins.CfnTablePropsMixin.CompactionProperty |
Python | aws_cdk.mixins_preview.aws_s3tables.mixins.CfnTablePropsMixin.CompactionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_s3tables » mixins » CfnTablePropsMixin » CompactionProperty |
Contains details about the compaction settings for an Iceberg table.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as s3tables_mixins } from '@aws-cdk/mixins-preview/aws-s3tables';
const compactionProperty: s3tables_mixins.CfnTablePropsMixin.CompactionProperty = {
status: 'status',
targetFileSizeMb: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| status? | string | The status of the maintenance configuration. |
| target | number | The target file size for the table in MB. |
status?
Type:
string
(optional)
The status of the maintenance configuration.
targetFileSizeMb?
Type:
number
(optional)
The target file size for the table in MB.

.NET
Go
Java
Python
TypeScript