Interface CfnTable.OrderProperty

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

@Stability(Stable) public static interface CfnTable.OrderProperty extends software.amazon.jsii.JsiiSerializable
Specifies the sort order of a sorted column.

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.glue.*;
 OrderProperty orderProperty = OrderProperty.builder()
         .column("column")
         .sortOrder(123)
         .build();
 

See Also: