Interface Statistics.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<Statistics.Builder,
,Statistics> SdkBuilder<Statistics.Builder,
,Statistics> SdkPojo
- Enclosing class:
Statistics
@Mutable
@NotThreadSafe
public static interface Statistics.Builder
extends SdkPojo, CopyableBuilder<Statistics.Builder,Statistics>
-
Method Summary
Modifier and TypeMethodDescriptionThe average of the aggregated field values.The count of things that match the query string criteria and contain a valid aggregation field value.The maximum aggregated field value.The minimum aggregated field value.stdDeviation
(Double stdDeviation) The standard deviation of the aggregated field values.The sum of the aggregated field values.sumOfSquares
(Double sumOfSquares) The sum of the squares of the aggregated field values.The variance of the aggregated field values.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, sdkFieldNameToField, sdkFields
-
Method Details
-
count
The count of things that match the query string criteria and contain a valid aggregation field value.
- Parameters:
count
- The count of things that match the query string criteria and contain a valid aggregation field value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
average
The average of the aggregated field values.
- Parameters:
average
- The average of the aggregated field values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sum
The sum of the aggregated field values.
- Parameters:
sum
- The sum of the aggregated field values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
minimum
The minimum aggregated field value.
- Parameters:
minimum
- The minimum aggregated field value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maximum
The maximum aggregated field value.
- Parameters:
maximum
- The maximum aggregated field value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sumOfSquares
The sum of the squares of the aggregated field values.
- Parameters:
sumOfSquares
- The sum of the squares of the aggregated field values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
variance
The variance of the aggregated field values.
- Parameters:
variance
- The variance of the aggregated field values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stdDeviation
The standard deviation of the aggregated field values.
- Parameters:
stdDeviation
- The standard deviation of the aggregated field values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-