interface ColumnProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnTablePropsMixin.ColumnProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnTablePropsMixin_ColumnProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnTablePropsMixin.ColumnProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnTablePropsMixin.ColumnProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnTablePropsMixin » 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 { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const columnProperty: glue_mixins.CfnTablePropsMixin.ColumnProperty = {
comment: 'comment',
name: 'name',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| comment? | string | A free-form text comment. |
| name? | string | The name of the Column . |
| type? | string | The data type of the Column . |
comment?
Type:
string
(optional)
A free-form text comment.
name?
Type:
string
(optional)
The name of the Column .
type?
Type:
string
(optional)
The data type of the Column .

.NET
Go
Java
Python
TypeScript