Column
- class aws_cdk.aws_glue.Column(*, name, type, comment=None)
Bases:
objectA column of a table.
- Parameters:
name (
str) – Name of the column.type (
Type) – Type of the column.comment (
Optional[str]) – Coment describing the column. Default: none
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_glue as glue # type: glue.Type column = glue.Column( name="name", type=type, # the properties below are optional comment="comment" )
Attributes
- comment
Coment describing the column.
- Default:
none
- name
Name of the column.
- type
Type of the column.