Interface CfnTablePropsMixin.ClusteringKeyColumnProperty

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

@Stability(Stable) public static interface CfnTablePropsMixin.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.cfnpropertymixins.services.cassandra.*;
 ClusteringKeyColumnProperty clusteringKeyColumnProperty = ClusteringKeyColumnProperty.builder()
         .column(ColumnProperty.builder()
                 .columnName("columnName")
                 .columnType("columnType")
                 .build())
         .orderBy("orderBy")
         .build();
 

See Also: