Column
- class aws_cdk.aws_glue_alpha.Column(*, name, type, comment=None)
Bases:
object(deprecated) A column of a table.
- Parameters:
name (
str) – (deprecated) Name of the column.type (
Type) – (deprecated) Type of the column.comment (
Optional[str]) – (deprecated) Coment describing the column. Default: none
- Stability:
deprecated
- 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 # type: glue_alpha.Type column = glue_alpha.Column( name="name", type=type, # the properties below are optional comment="comment" )
Attributes
- comment
(deprecated) Coment describing the column.
- Default:
none
- Stability:
deprecated
- name
(deprecated) Name of the column.
- Stability:
deprecated
- type
(deprecated) Type of the column.
- Stability:
deprecated