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 = {
icebergSchema: {
schemaFieldList: [{
name: 'name',
required: false,
type: 'type',
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| iceberg | IResolvable | Iceberg | The schema for an Iceberg table. |
icebergSchema?
Type:
IResolvable | Iceberg
(optional)
The schema for an Iceberg table.

.NET
Go
Java
Python
TypeScript