Class: Aws::BCMDataExports::Types::Column

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

Overview

Includes basic information for a data column such as its description, name, and type.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

The description for a column.

Returns:

  • (String)


43
44
45
46
47
48
49
# File 'lib/aws-sdk-bcmdataexports/types.rb', line 43

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

#nameString

The column name.

Returns:

  • (String)


43
44
45
46
47
48
49
# File 'lib/aws-sdk-bcmdataexports/types.rb', line 43

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

#typeString

The kind of data a column stores.

Returns:

  • (String)


43
44
45
46
47
48
49
# File 'lib/aws-sdk-bcmdataexports/types.rb', line 43

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