Interface CfnTable.ClusteringKeyColumnProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTable.ClusteringKeyColumnProperty.Jsii$Proxy
- Enclosing class:
- CfnTable
@Stability(Stable)
public static interface CfnTable.ClusteringKeyColumnProperty
extends software.amazon.jsii.JsiiSerializable
Defines an individual column within the clustering key.
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.cassandra.*;
ClusteringKeyColumnProperty clusteringKeyColumnProperty = ClusteringKeyColumnProperty.builder()
.column(ColumnProperty.builder()
.columnName("columnName")
.columnType("columnType")
.build())
// the properties below are optional
.orderBy("orderBy")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTable.ClusteringKeyColumnPropertystatic final classAn implementation forCfnTable.ClusteringKeyColumnProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumn
The name and data type of this clustering key column. -
getOrderBy
The order in which this column's data is stored:.ASC(default) - The column's data is stored in ascending order.DESC- The column's data is stored in descending order.
-
builder
-