Class: Aws::QuickSight::Types::AttributeAggregationFunction

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

Overview

Aggregation for attributes.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#simple_attribute_aggregationString

The built-in aggregation functions for attributes.

  • ‘UNIQUE_VALUE`: Returns the unique value for a field, aggregated by the dimension fields.

^

Returns:

  • (String)


2216
2217
2218
2219
2220
2221
# File 'lib/aws-sdk-quicksight/types.rb', line 2216

class AttributeAggregationFunction < Struct.new(
  :simple_attribute_aggregation,
  :value_for_multiple_values)
  SENSITIVE = []
  include Aws::Structure
end

#value_for_multiple_valuesString

Used by the ‘UNIQUE_VALUE` aggregation function. If there are multiple values for the field used by the aggregation, the value for this property will be returned instead. Defaults to ’*‘.

Returns:

  • (String)


2216
2217
2218
2219
2220
2221
# File 'lib/aws-sdk-quicksight/types.rb', line 2216

class AttributeAggregationFunction < Struct.new(
  :simple_attribute_aggregation,
  :value_for_multiple_values)
  SENSITIVE = []
  include Aws::Structure
end