interface ColumnProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Glue.CfnTable.ColumnProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnTable_ColumnProperty |
![]() | software.amazon.awscdk.services.glue.CfnTable.ColumnProperty |
![]() | aws_cdk.aws_glue.CfnTable.ColumnProperty |
![]() | aws-cdk-lib » aws_glue » CfnTable » ColumnProperty |
A column in a Table
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-column.html
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
Name | Type | Description |
---|---|---|
name | string | The name of the Column . |
comment? | string | A free-form text comment. |
type? | string | The 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
.