interface IcebergSchemaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3Tables.CfnTablePropsMixin.IcebergSchemaProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3tables#CfnTablePropsMixin_IcebergSchemaProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3tables.CfnTablePropsMixin.IcebergSchemaProperty |
Python | aws_cdk.cfn_property_mixins.aws_s3tables.CfnTablePropsMixin.IcebergSchemaProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3tables » CfnTablePropsMixin » IcebergSchemaProperty |
Contains details about the schema 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/cfn-property-mixins';
const icebergSchemaProperty: s3tables.CfnTablePropsMixin.IcebergSchemaProperty = {
schemaFieldList: [{
id: 123,
name: 'name',
required: false,
type: 'type',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| schema | IResolvable | (IResolvable | Schema)[] | The schema fields for the table. |
schemaFieldList?
Type:
IResolvable | (IResolvable | Schema)[]
(optional)
The schema fields for the table.

.NET
Go
Java
Python
TypeScript