Class: Aws::QuickSight::Types::ControlSortConfiguration

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#control_column_sortTypes::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_sortTypes::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