Interface CfnTablePropsMixin.SchemaV2FieldProperty

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

@Stability(Stable) public static interface CfnTablePropsMixin.SchemaV2FieldProperty extends software.amazon.jsii.JsiiSerializable
Contains details about a schema field for an Iceberg table that supports nested types (struct, list, map).

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;
 SchemaV2FieldProperty schemaV2FieldProperty = SchemaV2FieldProperty.builder()
         .doc("doc")
         .id(123)
         .name("name")
         .required(false)
         .type(type)
         .build();
 

See Also: