Interface CfnTable.IcebergSortOrderProperty

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

@Stability(Stable) public static interface CfnTable.IcebergSortOrderProperty extends software.amazon.jsii.JsiiSerializable
Sort order specification 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.services.s3tables.*;
 IcebergSortOrderProperty icebergSortOrderProperty = IcebergSortOrderProperty.builder()
         .fields(List.of(IcebergSortFieldProperty.builder()
                 .direction("direction")
                 .nullOrder("nullOrder")
                 .sourceId(123)
                 .transform("transform")
                 .build()))
         // the properties below are optional
         .orderId(123)
         .build();
 

See Also: