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

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

Overview

A column in a Table.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#commentString

A free-form text comment.

Returns:

  • (String)


2544
2545
2546
2547
2548
2549
2550
2551
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2544

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

#nameString

The name of the Column.

Returns:

  • (String)


2544
2545
2546
2547
2548
2549
2550
2551
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2544

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>)


2544
2545
2546
2547
2548
2549
2550
2551
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2544

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

#typeString

The data type of the Column.

Returns:

  • (String)


2544
2545
2546
2547
2548
2549
2550
2551
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2544

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