Interface AttributeAggregationFunction.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<AttributeAggregationFunction.Builder,AttributeAggregationFunction>
,SdkBuilder<AttributeAggregationFunction.Builder,AttributeAggregationFunction>
,SdkPojo
- Enclosing class:
- AttributeAggregationFunction
public static interface AttributeAggregationFunction.Builder extends SdkPojo, CopyableBuilder<AttributeAggregationFunction.Builder,AttributeAggregationFunction>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AttributeAggregationFunction.Builder
simpleAttributeAggregation(String simpleAttributeAggregation)
The built-in aggregation functions for attributes.AttributeAggregationFunction.Builder
simpleAttributeAggregation(SimpleAttributeAggregationFunction simpleAttributeAggregation)
The built-in aggregation functions for attributes.AttributeAggregationFunction.Builder
valueForMultipleValues(String valueForMultipleValues)
Used by theUNIQUE_VALUE
aggregation function.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
simpleAttributeAggregation
AttributeAggregationFunction.Builder simpleAttributeAggregation(String simpleAttributeAggregation)
The built-in aggregation functions for attributes.
-
UNIQUE_VALUE
: Returns the unique value for a field, aggregated by the dimension fields.
- Parameters:
simpleAttributeAggregation
- The built-in aggregation functions for attributes.-
UNIQUE_VALUE
: Returns the unique value for a field, aggregated by the dimension fields.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SimpleAttributeAggregationFunction
,SimpleAttributeAggregationFunction
-
-
simpleAttributeAggregation
AttributeAggregationFunction.Builder simpleAttributeAggregation(SimpleAttributeAggregationFunction simpleAttributeAggregation)
The built-in aggregation functions for attributes.
-
UNIQUE_VALUE
: Returns the unique value for a field, aggregated by the dimension fields.
- Parameters:
simpleAttributeAggregation
- The built-in aggregation functions for attributes.-
UNIQUE_VALUE
: Returns the unique value for a field, aggregated by the dimension fields.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SimpleAttributeAggregationFunction
,SimpleAttributeAggregationFunction
-
-
valueForMultipleValues
AttributeAggregationFunction.Builder valueForMultipleValues(String valueForMultipleValues)
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 '*'.- Parameters:
valueForMultipleValues
- 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 '*'.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-