interface Column
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Glue.Alpha.Column |
![]() | github.com/aws/aws-cdk-go/awscdkgluealpha/v2#Column |
![]() | software.amazon.awscdk.services.glue.alpha.Column |
![]() | aws_cdk.aws_glue_alpha.Column |
![]() | @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
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.