interface IcebergSchemaV2Property
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3Tables.CfnTablePropsMixin.IcebergSchemaV2Property |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3tables#CfnTablePropsMixin_IcebergSchemaV2Property |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3tables.CfnTablePropsMixin.IcebergSchemaV2Property |
Python | aws_cdk.cfn_property_mixins.aws_s3tables.CfnTablePropsMixin.IcebergSchemaV2Property |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3tables » CfnTablePropsMixin » IcebergSchemaV2Property |
Contains details about the schema version 2 (V2) for an Iceberg table that supports Apache Iceberg Nested Types (struct, list, map).
Primitive types are also supported.
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';
declare const type: any;
const icebergSchemaV2Property: s3tables.CfnTablePropsMixin.IcebergSchemaV2Property = {
identifierFieldIds: [123],
schemaId: 123,
schemaV2FieldList: [{
doc: 'doc',
id: 123,
name: 'name',
required: false,
type: type,
}],
schemaV2FieldType: 'schemaV2FieldType',
};
Properties
| Name | Type | Description |
|---|---|---|
| identifier | number[] | IResolvable | A list of field IDs that are used as the identifier fields for the table. |
| schema | number | An optional unique identifier for the schema. |
| schema | IResolvable | (IResolvable | Schema)[] | List of schema fields that support nested types. |
| schema | string | The type of the top-level schema, which is always 'struct'. |
identifierFieldIds?
Type:
number[] | IResolvable
(optional)
A list of field IDs that are used as the identifier fields for the table.
Identifier fields uniquely identify a row in the table.
schemaId?
Type:
number
(optional)
An optional unique identifier for the schema.
schemaV2FieldList?
Type:
IResolvable | (IResolvable | Schema)[]
(optional)
List of schema fields that support nested types.
schemaV2FieldType?
Type:
string
(optional)
The type of the top-level schema, which is always 'struct'.

.NET
Go
Java
Python
TypeScript