Interface Statistics.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Statistics.Builder,Statistics>,SdkBuilder<Statistics.Builder,Statistics>,SdkPojo
- Enclosing class:
- Statistics
public static interface Statistics.Builder extends SdkPojo, CopyableBuilder<Statistics.Builder,Statistics>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Statistics.Builderaverage(Double average)The average of the aggregated field values.Statistics.Buildercount(Integer count)The count of things that match the query string criteria and contain a valid aggregation field value.Statistics.Buildermaximum(Double maximum)The maximum aggregated field value.Statistics.Builderminimum(Double minimum)The minimum aggregated field value.Statistics.BuilderstdDeviation(Double stdDeviation)The standard deviation of the aggregated field values.Statistics.Buildersum(Double sum)The sum of the aggregated field values.Statistics.BuildersumOfSquares(Double sumOfSquares)The sum of the squares of the aggregated field values.Statistics.Buildervariance(Double variance)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, sdkFields
-
-
-
-
Method Detail
-
count
Statistics.Builder count(Integer 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
Statistics.Builder average(Double 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
Statistics.Builder sum(Double 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
Statistics.Builder minimum(Double 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
Statistics.Builder maximum(Double 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
Statistics.Builder sumOfSquares(Double 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
Statistics.Builder variance(Double 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
Statistics.Builder stdDeviation(Double 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.
-
-