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.
^
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_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 ’*‘.
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 |