Class: Aws::BCMDataExports::Types::Column
- Inherits:
-
Struct
- Object
- Struct
- Aws::BCMDataExports::Types::Column
- 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
-
#description ⇒ String
The description for a column.
-
#name ⇒ String
The column name.
-
#type ⇒ String
The kind of data a column stores.
Instance Attribute Details
#description ⇒ String
The description for a column.
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 |
#name ⇒ String
The column name.
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 |
#type ⇒ String
The kind of data a column stores.
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 |