You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Glue::Types::Column

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing Column as input to an Aws::Client method, you can use a vanilla Hash:

{
  name: "NameString", # required
  type: "ColumnTypeString",
  comment: "CommentString",
  parameters: {
    "KeyString" => "ParametersMapValue",
  },
}

A column in a Table.

Instance Attribute Summary collapse

Instance Attribute Details

#commentString

A free-form text comment.

Returns:

  • (String)

    A free-form text comment.

#nameString

The name of the Column.

Returns:

  • (String)

    The name of the Column.

#parametersHash<String,String>

These key-value pairs define properties associated with the column.

Returns:

  • (Hash<String,String>)

    These key-value pairs define properties associated with the column.

#typeString

The data type of the Column.

Returns:

  • (String)

    The data type of the Column.