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();
 

See Also: