interface Column
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Glue.Column | 
|  Java | software.amazon.awscdk.services.glue.Column | 
|  Python | aws_cdk.aws_glue.Column | 
|  TypeScript (source) | @aws-cdk/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 * as glue from '@aws-cdk/aws-glue';
const column: glue.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.
