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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTable.IcebergSortOrderPropertystatic final classAn implementation forCfnTable.IcebergSortOrderProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFields
List of sort fields for an Iceberg table.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnTable.IcebergSortFieldProperty>- See Also:
-
getOrderId
The sort order ID (defaults to 1 if not specified, 0 is reserved for unsorted).- See Also:
-
builder
-