Column

class aws_cdk.aws_glue.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 as glue

column = glue.Column(
    name="name",
    type=glue.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