interface ClusteringKeyColumnProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Cassandra.Mixins.CfnTablePropsMixin.ClusteringKeyColumnProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscassandra/mixins#CfnTablePropsMixin_ClusteringKeyColumnProperty |
Java | software.amazon.awscdk.mixins.preview.services.cassandra.mixins.CfnTablePropsMixin.ClusteringKeyColumnProperty |
Python | aws_cdk.mixins_preview.aws_cassandra.mixins.CfnTablePropsMixin.ClusteringKeyColumnProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cassandra » mixins » CfnTablePropsMixin » ClusteringKeyColumnProperty |
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 { mixins as cassandra_mixins } from '@aws-cdk/mixins-preview/aws-cassandra';
const clusteringKeyColumnProperty: cassandra_mixins.CfnTablePropsMixin.ClusteringKeyColumnProperty = {
column: {
columnName: 'columnName',
columnType: 'columnType',
},
orderBy: 'orderBy',
};
Properties
| Name | Type | Description |
|---|---|---|
| column? | IResolvable | Column | The name and data type of this clustering key column. |
| order | string | The order in which this column's data is stored:. |
column?
Type:
IResolvable | Column
(optional)
The name and data type of this clustering key column.
orderBy?
Type:
string
(optional, default: "ASC")
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.

.NET
Go
Java
Python
TypeScript