Column
- class aws_cdk.aws_glue_alpha.Column(*, name, type, comment=None)
- Bases: - object- (experimental) A column of a table. - Parameters:
- name ( - str) – (experimental) Name of the column.
- type ( - Union[- Type,- Dict[- str,- Any]]) – (experimental) Type of the column.
- comment ( - Optional[- str]) – (experimental) Coment describing the column. Default: none
 
- Stability:
- experimental 
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_glue_alpha as glue_alpha column = glue_alpha.Column( name="name", type=glue_alpha.Type( input_string="inputString", is_primitive=False ), # the properties below are optional comment="comment" ) - Attributes - comment
- (experimental) Coment describing the column. - Default:
- none 
- Stability:
- experimental 
 
 - name
- (experimental) Name of the column. - Stability:
- experimental 
 
 - type
- (experimental) Type of the column. - Stability:
- experimental