interface Column
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.Column |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#Column |
Java | software.amazon.awscdk.services.glue.Column |
Python | aws_cdk.aws_glue.Column |
TypeScript (source) | aws-cdk-lib » 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 { aws_glue as glue } from 'aws-cdk-lib';
declare const type: glue.Type;
const column: glue.Column = {
name: 'name',
type: type,
// 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.

.NET
Go
Java
Python
TypeScript (