Class: Aws::QuickSight::Types::DataPrepAggregationFunction

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

Overview

Defines the type of aggregation function to apply to data during data preparation, supporting simple and list aggregations.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#list_aggregationTypes::DataPrepListAggregationFunction

A list aggregation function that concatenates values from multiple rows into a single delimited string.



10235
10236
10237
10238
10239
10240
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 10235

class DataPrepAggregationFunction < Struct.new(
  :simple_aggregation,
  :list_aggregation)
  SENSITIVE = []
  include Aws::Structure
end

#simple_aggregationTypes::DataPrepSimpleAggregationFunction

A simple aggregation function such as SUM, COUNT, AVERAGE, MIN, MAX, MEDIAN, VARIANCE, or STANDARD_DEVIATION.



10235
10236
10237
10238
10239
10240
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 10235

class DataPrepAggregationFunction < Struct.new(
  :simple_aggregation,
  :list_aggregation)
  SENSITIVE = []
  include Aws::Structure
end