@Stability(value=Stable)
public static interface CfnTable.ClusteringKeyColumnProperty
extends software.amazon.jsii.JsiiSerializable
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() |
Object |
getColumn()
The name and data type of this clustering key column.
|
default String |
getOrderBy()
The order in which this column's data is stored:.
|
@Stability(value=Stable) @NotNull Object getColumn()
@Stability(value=Stable) @Nullable default String getOrderBy()
ASC (default) - The column's data is stored in ascending order.DESC - The column's data is stored in descending order.@Stability(value=Stable) static CfnTable.ClusteringKeyColumnProperty.Builder builder()
Copyright © 2022. All rights reserved.