aws-cdk-lib.aws_glue.CfnTable.ColumnProperty

interface ColumnProperty

LanguageType name
.NETAmazon.CDK.AWS.Glue.CfnTable.ColumnProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnTable_ColumnProperty
Javasoftware.amazon.awscdk.services.glue.CfnTable.ColumnProperty
Pythonaws_cdk.aws_glue.CfnTable.ColumnProperty
TypeScript aws-cdk-lib » aws_glue » CfnTable » ColumnProperty

A 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_glue as glue } from 'aws-cdk-lib';
const columnProperty: glue.CfnTable.ColumnProperty = {
  name: 'name',

  // the properties below are optional
  comment: 'comment',
  type: 'type',
};

Properties

NameTypeDescription
namestringThe name of the Column .
comment?stringA free-form text comment.
type?stringThe data type of the Column .

name

Type: string

The name of the Column .


comment?

Type: string (optional)

A free-form text comment.


type?

Type: string (optional)

The data type of the Column .