interface ColumnProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BCMDataExports.CfnTable.ColumnProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbcmdataexports#CfnTable_ColumnProperty |
Java | software.amazon.awscdk.services.bcmdataexports.CfnTable.ColumnProperty |
Python | aws_cdk.aws_bcmdataexports.CfnTable.ColumnProperty |
TypeScript | aws-cdk-lib » aws_bcmdataexports » CfnTable » ColumnProperty |
Includes basic information for a data column such as its description, name, and type.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bcmdataexports as bcmdataexports } from 'aws-cdk-lib';
const columnProperty: bcmdataexports.CfnTable.ColumnProperty = {
description: 'description',
name: 'name',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description for a column. |
| name? | string | The column name. |
| type? | string | The kind of data a column stores. |
description?
Type:
string
(optional)
The description for a column.
name?
Type:
string
(optional)
The column name.
type?
Type:
string
(optional)
The kind of data a column stores.

.NET
Go
Java
Python
TypeScript