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.
      4406 4407 4408 4409 4410 4411 4412  | 
    
      # File 'lib/aws-sdk-quicksight/types.rb', line 4406 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`.
      4406 4407 4408 4409 4410 4411 4412  | 
    
      # File 'lib/aws-sdk-quicksight/types.rb', line 4406 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`.
      4406 4407 4408 4409 4410 4411 4412  | 
    
      # File 'lib/aws-sdk-quicksight/types.rb', line 4406 class ComparativeOrder < Struct.new( :use_ordering, :specifed_order, :treat_undefined_specified_values) SENSITIVE = [] include Aws::Structure end  |