Class: Aws::QuickSight::Types::AttributeAggregationFunction
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::AttributeAggregationFunction
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-quicksight/types.rb
Overview
Aggregation for attributes.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#simple_attribute_aggregation ⇒ String
The built-in aggregation functions for attributes.
-
#value_for_multiple_values ⇒ String
Used by the ‘UNIQUE_VALUE` aggregation function.
Instance Attribute Details
#simple_attribute_aggregation ⇒ String
The built-in aggregation functions for attributes.
-
‘UNIQUE_VALUE`: Returns the unique value for a field, aggregated by the dimension fields.
^
2356 2357 2358 2359 2360 2361 |
# File 'lib/aws-sdk-quicksight/types.rb', line 2356 class AttributeAggregationFunction < Struct.new( :simple_attribute_aggregation, :value_for_multiple_values) SENSITIVE = [] include Aws::Structure end |
#value_for_multiple_values ⇒ String
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 ’*‘.
2356 2357 2358 2359 2360 2361 |
# File 'lib/aws-sdk-quicksight/types.rb', line 2356 class AttributeAggregationFunction < Struct.new( :simple_attribute_aggregation, :value_for_multiple_values) SENSITIVE = [] include Aws::Structure end |