Interface CfnTemplate.AttributeAggregationFunctionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.AttributeAggregationFunctionProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.AttributeAggregationFunctionProperty
extends software.amazon.jsii.JsiiSerializable
Aggregation for attributes.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.quicksight.*; AttributeAggregationFunctionProperty attributeAggregationFunctionProperty = AttributeAggregationFunctionProperty.builder() .simpleAttributeAggregation("simpleAttributeAggregation") .valueForMultipleValues("valueForMultipleValues") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTemplate.AttributeAggregationFunctionProperty
static final class
An implementation forCfnTemplate.AttributeAggregationFunctionProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSimpleAttributeAggregation
The built-in aggregation functions for attributes.UNIQUE_VALUE
: Returns the unique value for a field, aggregated by the dimension fields.
- See Also:
-
getValueForMultipleValues
Used by theUNIQUE_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 '*'.
- See Also:
-
builder
-