Class: Aws::Athena::Types::Column

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

Overview

Contains metadata for a column in a table.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#commentString

Optional information about the column.

Returns:

  • (String)


499
500
501
502
503
504
505
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 499

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

#nameString

The name of the column.

Returns:

  • (String)


499
500
501
502
503
504
505
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 499

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

#typeString

The data type of the column.

Returns:

  • (String)


499
500
501
502
503
504
505
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 499

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