Interface CfnTablePropsMixin.IcebergSchemaV2Property

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTablePropsMixin.IcebergSchemaV2Property.Jsii$Proxy
Enclosing class:
CfnTablePropsMixin

@Stability(Stable) public static interface CfnTablePropsMixin.IcebergSchemaV2Property extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.s3tables.*;
 Object type;
 IcebergSchemaV2Property icebergSchemaV2Property = IcebergSchemaV2Property.builder()
         .identifierFieldIds(List.of(123))
         .schemaId(123)
         .schemaV2FieldList(List.of(SchemaV2FieldProperty.builder()
                 .doc("doc")
                 .id(123)
                 .name("name")
                 .required(false)
                 .type(type)
                 .build()))
         .schemaV2FieldType("schemaV2FieldType")
         .build();
 

See Also: