Class: Aws::QuickSight::Types::NumericalAggregationFunction

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb

Overview

Aggregation for numerical values.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#percentile_aggregationTypes::PercentileAggregation

An aggregation based on the percentile of values in a dimension or measure.



21162
21163
21164
21165
21166
21167
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 21162

class NumericalAggregationFunction < Struct.new(
  :simple_numerical_aggregation,
  :percentile_aggregation)
  SENSITIVE = []
  include Aws::Structure
end

#simple_numerical_aggregationString

Built-in aggregation functions for numerical values.

  • SUM: The sum of a dimension or measure.

  • AVERAGE: The average of a dimension or measure.

  • MIN: The minimum value of a dimension or measure.

  • MAX: The maximum value of a dimension or measure.

  • COUNT: The count of a dimension or measure.

  • DISTINCT_COUNT: The count of distinct values in a dimension or measure.

  • VAR: The variance of a dimension or measure.

  • VARP: The partitioned variance of a dimension or measure.

  • STDEV: The standard deviation of a dimension or measure.

  • STDEVP: The partitioned standard deviation of a dimension or measure.

  • MEDIAN: The median value of a dimension or measure.

Returns:

  • (String)


21162
21163
21164
21165
21166
21167
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 21162

class NumericalAggregationFunction < Struct.new(
  :simple_numerical_aggregation,
  :percentile_aggregation)
  SENSITIVE = []
  include Aws::Structure
end