Class: Aws::QuickSight::Types::ComparativeOrder
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::ComparativeOrder
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-quicksight/types.rb
Overview
A structure that represents a comparative order.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#specifed_order ⇒ Array<String>
The list of columns to be used in the ordering.
-
#treat_undefined_specified_values ⇒ String
The treat of undefined specified values.
-
#use_ordering ⇒ String
The ordering type for a column.
Instance Attribute Details
#specifed_order ⇒ Array<String>
The list of columns to be used in the ordering.
4863 4864 4865 4866 4867 4868 4869 |
# File 'lib/aws-sdk-quicksight/types.rb', line 4863 class ComparativeOrder < Struct.new( :use_ordering, :specifed_order, :treat_undefined_specified_values) SENSITIVE = [] include Aws::Structure end |
#treat_undefined_specified_values ⇒ String
The treat of undefined specified values. Valid values for this structure are ‘LEAST` and `MOST`.
4863 4864 4865 4866 4867 4868 4869 |
# File 'lib/aws-sdk-quicksight/types.rb', line 4863 class ComparativeOrder < Struct.new( :use_ordering, :specifed_order, :treat_undefined_specified_values) SENSITIVE = [] include Aws::Structure end |
#use_ordering ⇒ String
The ordering type for a column. Valid values for this structure are ‘GREATER_IS_BETTER`, `LESSER_IS_BETTER` and `SPECIFIED`.
4863 4864 4865 4866 4867 4868 4869 |
# File 'lib/aws-sdk-quicksight/types.rb', line 4863 class ComparativeOrder < Struct.new( :use_ordering, :specifed_order, :treat_undefined_specified_values) SENSITIVE = [] include Aws::Structure end |