Class: Aws::QuickSight::Types::SelectableValuesSort
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::SelectableValuesSort
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
The sort configuration for selectable values in a control.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#direction ⇒ String
The sort direction for the selectable values.
Instance Attribute Details
#direction ⇒ String
The sort direction for the selectable values. Choose one of the following options:
ASC: Sort in ascending order.DESC: Sort in descending order.USER_DEFINED_ORDER: Preserve the order in which the values were entered.
37647 37648 37649 37650 37651 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 37647 class SelectableValuesSort < Struct.new( :direction) SENSITIVE = [] include Aws::Structure end |