aws-cdk-lib.aws_cassandra.CfnTable.ColumnProperty

interface ColumnProperty

LanguageType name
.NETAmazon.CDK.AWS.Cassandra.CfnTable.ColumnProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscassandra#CfnTable_ColumnProperty
Javasoftware.amazon.awscdk.services.cassandra.CfnTable.ColumnProperty
Pythonaws_cdk.aws_cassandra.CfnTable.ColumnProperty
TypeScript aws-cdk-lib » aws_cassandra » CfnTable » ColumnProperty

The name and data type of an individual column in a table.

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-lib';
const columnProperty: cassandra.CfnTable.ColumnProperty = {
  columnName: 'columnName',
  columnType: 'columnType',
};

Properties

NameTypeDescription
columnNamestringThe name of the column.
columnTypestringThe data type of the column.

columnName

Type: string

The name of the column.

For more information, see Identifiers in the Amazon Keyspaces Developer Guide .


columnType

Type: string

The data type of the column.

For more information, see Data types in the Amazon Keyspaces Developer Guide .