Class: Aws::QuickSight::Types::ControlSortConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::ControlSortConfiguration
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
The sort configuration for control values. This is a tagged union
type. Specify either SelectableValuesSort or ControlColumnSort,
but not both.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#control_column_sort ⇒ Types::AggregationSortConfiguration
The sort configuration for controls that are tied to a dataset column.
-
#selectable_values_sort ⇒ Types::SelectableValuesSort
The sort configuration for user-specified values in the control.
Instance Attribute Details
#control_column_sort ⇒ Types::AggregationSortConfiguration
The sort configuration for controls that are tied to a dataset column. Use this option to sort control values by an aggregate of a column.
7298 7299 7300 7301 7302 7303 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7298 class ControlSortConfiguration < Struct.new( :selectable_values_sort, :control_column_sort) SENSITIVE = [] include Aws::Structure end |
#selectable_values_sort ⇒ Types::SelectableValuesSort
The sort configuration for user-specified values in the control. Use this option to sort values that are manually entered by users in a dropdown or list control.
7298 7299 7300 7301 7302 7303 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7298 class ControlSortConfiguration < Struct.new( :selectable_values_sort, :control_column_sort) SENSITIVE = [] include Aws::Structure end |