Class: Aws::QuickSight::Types::AggregationSortConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::AggregationSortConfiguration
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
The configuration options to sort aggregated values.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aggregation_function ⇒ Types::AggregationFunction
The function that aggregates the values in
Column. -
#column ⇒ Types::ColumnIdentifier
The column that determines the sort order of aggregated values.
-
#sort_direction ⇒ String
The sort direction of values.
Instance Attribute Details
#aggregation_function ⇒ Types::AggregationFunction
The function that aggregates the values in Column.
510 511 512 513 514 515 516 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 510 class AggregationSortConfiguration < Struct.new( :column, :sort_direction, :aggregation_function) SENSITIVE = [] include Aws::Structure end |
#column ⇒ Types::ColumnIdentifier
The column that determines the sort order of aggregated values.
510 511 512 513 514 515 516 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 510 class AggregationSortConfiguration < Struct.new( :column, :sort_direction, :aggregation_function) SENSITIVE = [] include Aws::Structure end |
#sort_direction ⇒ String
The sort direction of values.
ASC: Sort in ascending order.DESC: Sort in descending order.
510 511 512 513 514 515 516 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 510 class AggregationSortConfiguration < Struct.new( :column, :sort_direction, :aggregation_function) SENSITIVE = [] include Aws::Structure end |