interface Column
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Glue.Column |
![]() | software.amazon.awscdk.services.glue.Column |
![]() | aws_cdk.aws_glue.Column |
![]() | @aws-cdk/aws-glue » 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 from '@aws-cdk/aws-glue';
const column: glue.Column = {
name: 'name',
type: {
inputString: 'inputString',
isPrimitive: false,
},
// the properties below are optional
comment: 'comment',
};
Properties
Name | Type | Description |
---|---|---|
name | string | Name of the column. |
type | Type | Type of the column. |
comment? | string | Coment 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.