Interface CfnTablePropsMixin.IcebergMetadataProperty

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

@Stability(Stable) public static interface CfnTablePropsMixin.IcebergMetadataProperty extends software.amazon.jsii.JsiiSerializable
Contains details about the metadata 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 software.amazon.awscdk.cfnpropertymixins.services.s3tables.*;
 IcebergMetadataProperty icebergMetadataProperty = IcebergMetadataProperty.builder()
         .icebergPartitionSpec(IcebergPartitionSpecProperty.builder()
                 .fields(List.of(IcebergPartitionFieldProperty.builder()
                         .fieldId(123)
                         .name("name")
                         .sourceId(123)
                         .transform("transform")
                         .build()))
                 .specId(123)
                 .build())
         .icebergSchema(IcebergSchemaProperty.builder()
                 .schemaFieldList(List.of(SchemaFieldProperty.builder()
                         .id(123)
                         .name("name")
                         .required(false)
                         .type("type")
                         .build()))
                 .build())
         .icebergSortOrder(IcebergSortOrderProperty.builder()
                 .fields(List.of(IcebergSortFieldProperty.builder()
                         .direction("direction")
                         .nullOrder("nullOrder")
                         .sourceId(123)
                         .transform("transform")
                         .build()))
                 .orderId(123)
                 .build())
         .tableProperties(Map.of(
                 "tablePropertiesKey", "tableProperties"))
         .build();
 

See Also: