interface IcebergMetadataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3Tables.Mixins.CfnTablePropsMixin.IcebergMetadataProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3tables/mixins#CfnTablePropsMixin_IcebergMetadataProperty |
Java | software.amazon.awscdk.mixins.preview.services.s3tables.mixins.CfnTablePropsMixin.IcebergMetadataProperty |
Python | aws_cdk.mixins_preview.aws_s3tables.mixins.CfnTablePropsMixin.IcebergMetadataProperty |
TypeScript | @aws-cdk/mixins-preview » aws_s3tables » mixins » CfnTablePropsMixin » IcebergMetadataProperty |
Contains details about the metadata 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 icebergMetadataProperty: s3tables_mixins.CfnTablePropsMixin.IcebergMetadataProperty = {
icebergPartitionSpec: {
fields: [{
fieldId: 123,
name: 'name',
sourceId: 123,
transform: 'transform',
}],
specId: 123,
},
icebergSchema: {
schemaFieldList: [{
id: 123,
name: 'name',
required: false,
type: 'type',
}],
},
icebergSortOrder: {
fields: [{
direction: 'direction',
nullOrder: 'nullOrder',
sourceId: 123,
transform: 'transform',
}],
orderId: 123,
},
tableProperties: {
tablePropertiesKey: 'tableProperties',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| iceberg | IResolvable | Iceberg | Partition specification for an Iceberg table. |
| iceberg | IResolvable | Iceberg | The schema for an Iceberg table. |
| iceberg | IResolvable | Iceberg | Sort order specification for an Iceberg table. |
| table | { [string]: string } | IResolvable | Iceberg table properties (e.g., format-version, write.parquet.compression-codec). |
icebergPartitionSpec?
Type:
IResolvable | Iceberg
(optional)
Partition specification for an Iceberg table.
icebergSchema?
Type:
IResolvable | Iceberg
(optional)
The schema for an Iceberg table.
icebergSortOrder?
Type:
IResolvable | Iceberg
(optional)
Sort order specification for an Iceberg table.
tableProperties?
Type:
{ [string]: string } | IResolvable
(optional)
Iceberg table properties (e.g., format-version, write.parquet.compression-codec).

.NET
Go
Java
Python
TypeScript