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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glue/types.rb

Overview

Note:

When making an API call, you may pass Column data as a hash:

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

A column in a `Table`.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#commentString

A free-form text comment.

Returns:

  • (String)


1734
1735
1736
1737
1738
1739
1740
1741
# File 'lib/aws-sdk-glue/types.rb', line 1734

class Column < Struct.new(
  :name,
  :type,
  :comment,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the `Column`.

Returns:

  • (String)


1734
1735
1736
1737
1738
1739
1740
1741
# File 'lib/aws-sdk-glue/types.rb', line 1734

class Column < Struct.new(
  :name,
  :type,
  :comment,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end

#parametersHash<String,String>

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

Returns:

  • (Hash<String,String>)


1734
1735
1736
1737
1738
1739
1740
1741
# File 'lib/aws-sdk-glue/types.rb', line 1734

class Column < Struct.new(
  :name,
  :type,
  :comment,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The data type of the `Column`.

Returns:

  • (String)


1734
1735
1736
1737
1738
1739
1740
1741
# File 'lib/aws-sdk-glue/types.rb', line 1734

class Column < Struct.new(
  :name,
  :type,
  :comment,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end