@aws-cdk_aws-glue-alpha.Column

interface Column ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.Glue.Alpha.Column
Gogithub.com/aws/aws-cdk-go/awscdkgluealpha/v2#Column
Javasoftware.amazon.awscdk.services.glue.alpha.Column
Pythonaws_cdk.aws_glue_alpha.Column
TypeScript (source)@aws-cdk/aws-glue-alpha ยป Column

A column of a table.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as glue_alpha from '@aws-cdk/aws-glue-alpha';
const column: glue_alpha.Column = {
  name: 'name',
  type: {
    inputString: 'inputString',
    isPrimitive: false,
  },

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

Properties

NameTypeDescription
name๐Ÿ”นstringName of the column.
type๐Ÿ”นTypeType of the column.
comment?๐Ÿ”นstringComent describing the column.

name๐Ÿ”น

Type: string

Name of the column.


type๐Ÿ”น

Type: Type

Type of the column.


comment?๐Ÿ”น

Type: string (optional, default: none)

Coment describing the column.