Class: Aws::QuickSight::Types::TransposedTableOption
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::TransposedTableOption
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-quicksight/types.rb
Overview
The column option of the transposed table.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#column_index ⇒ Integer
The index of a columns in a transposed table.
-
#column_type ⇒ String
The column type of the column in a transposed table.
-
#column_width ⇒ String
The width of a column in a transposed table.
Instance Attribute Details
#column_index ⇒ Integer
The index of a columns in a transposed table. The index range is 0-9999.
35115 35116 35117 35118 35119 35120 35121 |
# File 'lib/aws-sdk-quicksight/types.rb', line 35115 class TransposedTableOption < Struct.new( :column_index, :column_width, :column_type) SENSITIVE = [] include Aws::Structure end |
#column_type ⇒ String
The column type of the column in a transposed table. Choose one of the following options:
-
‘ROW_HEADER_COLUMN`: Refers to the leftmost column of the row header in the transposed table.
-
‘VALUE_COLUMN`: Refers to all value columns in the transposed table.
35115 35116 35117 35118 35119 35120 35121 |
# File 'lib/aws-sdk-quicksight/types.rb', line 35115 class TransposedTableOption < Struct.new( :column_index, :column_width, :column_type) SENSITIVE = [] include Aws::Structure end |
#column_width ⇒ String
The width of a column in a transposed table.
35115 35116 35117 35118 35119 35120 35121 |
# File 'lib/aws-sdk-quicksight/types.rb', line 35115 class TransposedTableOption < Struct.new( :column_index, :column_width, :column_type) SENSITIVE = [] include Aws::Structure end |