interface ClusteringKeyColumnProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Cassandra.CfnTablePropsMixin.ClusteringKeyColumnProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscassandra#CfnTablePropsMixin_ClusteringKeyColumnProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cassandra.CfnTablePropsMixin.ClusteringKeyColumnProperty |
Python | aws_cdk.cfn_property_mixins.aws_cassandra.CfnTablePropsMixin.ClusteringKeyColumnProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cassandra » 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 { aws_cassandra as cassandra } from '@aws-cdk/cfn-property-mixins';
const clusteringKeyColumnProperty: cassandra.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