interface IcebergSchemaV2Property
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3Tables.CfnTable.IcebergSchemaV2Property |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3tables#CfnTable_IcebergSchemaV2Property |
Java | software.amazon.awscdk.services.s3tables.CfnTable.IcebergSchemaV2Property |
Python | aws_cdk.aws_s3tables.CfnTable.IcebergSchemaV2Property |
TypeScript | aws-cdk-lib » aws_s3tables » CfnTable » 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-lib';
declare const type: any;
const icebergSchemaV2Property: s3tables.CfnTable.IcebergSchemaV2Property = {
schemaV2FieldList: [{
id: 123,
name: 'name',
required: false,
type: type,
// the properties below are optional
doc: 'doc',
}],
schemaV2FieldType: 'schemaV2FieldType',
// the properties below are optional
identifierFieldIds: [123],
schemaId: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| 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'. |
| 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. |
schemaV2FieldList
Type:
IResolvable | (IResolvable | Schema)[]
List of schema fields that support nested types.
schemaV2FieldType
Type:
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.

.NET
Go
Java
Python
TypeScript