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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTable.OrderProperty
static final class
An implementation forCfnTable.OrderProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The name of the column.Indicates that the column is sorted in ascending order (== 1
), or in descending order (==0
).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumn
The name of the column.- See Also:
-
getSortOrder
Indicates that the column is sorted in ascending order (== 1
), or in descending order (==0
).- See Also:
-
builder
- Returns:
- a
CfnTable.OrderProperty.Builder
ofCfnTable.OrderProperty
-