interface ColumnProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnTable.ColumnProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnTable_ColumnProperty |
Java | software.amazon.awscdk.services.glue.CfnTable.ColumnProperty |
Python | aws_cdk.aws_glue.CfnTable.ColumnProperty |
TypeScript | 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 .

.NET
Go
Java
Python
TypeScript