interface IcebergMetadataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3Tables.CfnTable.IcebergMetadataProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3tables#CfnTable_IcebergMetadataProperty |
Java | software.amazon.awscdk.services.s3tables.CfnTable.IcebergMetadataProperty |
Python | aws_cdk.aws_s3tables.CfnTable.IcebergMetadataProperty |
TypeScript | aws-cdk-lib » aws_s3tables » CfnTable » 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 { aws_s3tables as s3tables } from 'aws-cdk-lib';
const icebergMetadataProperty: s3tables.CfnTable.IcebergMetadataProperty = {
icebergSchema: {
schemaFieldList: [{
name: 'name',
type: 'type',
// the properties below are optional
id: 123,
required: false,
}],
},
// the properties below are optional
icebergPartitionSpec: {
fields: [{
name: 'name',
sourceId: 123,
transform: 'transform',
// the properties below are optional
fieldId: 123,
}],
// the properties below are optional
specId: 123,
},
icebergSortOrder: {
fields: [{
direction: 'direction',
nullOrder: 'nullOrder',
sourceId: 123,
transform: 'transform',
}],
// the properties below are optional
orderId: 123,
},
tableProperties: {
tablePropertiesKey: 'tableProperties',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| iceberg | IResolvable | Iceberg | The schema for an Iceberg table. |
| iceberg | IResolvable | Iceberg | Partition specification 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). |
icebergSchema
Type:
IResolvable | Iceberg
The schema for an Iceberg table.
icebergPartitionSpec?
Type:
IResolvable | Iceberg
(optional)
Partition specification 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