interface ColumnProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Cassandra.CfnTablePropsMixin.ColumnProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscassandra#CfnTablePropsMixin_ColumnProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cassandra.CfnTablePropsMixin.ColumnProperty |
Python | aws_cdk.cfn_property_mixins.aws_cassandra.CfnTablePropsMixin.ColumnProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cassandra » CfnTablePropsMixin » ColumnProperty |
The name and data type of an individual column in a table.
In addition to the data type, you can also use the following two keywords:
STATICif the table has a clustering column. Static columns store values that are shared by all rows in the same partition.FROZENfor collection data types. In frozen collections the values of the collection are serialized into a single immutable value, and Amazon Keyspaces treats them like aBLOB.
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 columnProperty: cassandra.CfnTablePropsMixin.ColumnProperty = {
columnName: 'columnName',
columnType: 'columnType',
};
Properties
| Name | Type | Description |
|---|---|---|
| column | string | The name of the column. |
| column | string | The data type of the column. |
columnName?
Type:
string
(optional)
The name of the column.
For more information, see Identifiers in the Amazon Keyspaces Developer Guide .
columnType?
Type:
string
(optional)
The data type of the column.
For more information, see Data types in the Amazon Keyspaces Developer Guide .

.NET
Go
Java
Python
TypeScript