public static interface CfnTable.ClusteringKeyColumnProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnTable.ClusteringKeyColumnProperty.Builder
A builder for
CfnTable.ClusteringKeyColumnProperty |
static class |
CfnTable.ClusteringKeyColumnProperty.Jsii$Proxy
An implementation for
CfnTable.ClusteringKeyColumnProperty |
Modifier and Type | Method and Description |
---|---|
static CfnTable.ClusteringKeyColumnProperty.Builder |
builder() |
java.lang.Object |
getColumn()
The name and data type of this clustering key column.
|
default java.lang.String |
getOrderBy()
The order in which this column's data is stored:.
|
java.lang.Object getColumn()
default java.lang.String getOrderBy()
ASC
(default) - The column's data is stored in ascending order.DESC
- The column's data is stored in descending order.static CfnTable.ClusteringKeyColumnProperty.Builder builder()