Interface Aggregates.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Aggregates.Builder,Aggregates>,SdkBuilder<Aggregates.Builder,Aggregates>,SdkPojo
- Enclosing class:
- Aggregates
public static interface Aggregates.Builder extends SdkPojo, CopyableBuilder<Aggregates.Builder,Aggregates>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Aggregates.Builderaverage(Double average)The average (mean) value of the time series over a time interval window.Aggregates.Buildercount(Double count)The count of data points in the time series over a time interval window.Aggregates.Buildermaximum(Double maximum)The maximum value of the time series over a time interval window.Aggregates.Builderminimum(Double minimum)The minimum value of the time series over a time interval window.Aggregates.BuilderstandardDeviation(Double standardDeviation)The standard deviation of the time series over a time interval window.Aggregates.Buildersum(Double sum)The sum of the time series over a time interval window.-
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
-
average
Aggregates.Builder average(Double average)
The average (mean) value of the time series over a time interval window.
- Parameters:
average- The average (mean) value of the time series over a time interval window.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
count
Aggregates.Builder count(Double count)
The count of data points in the time series over a time interval window.
- Parameters:
count- The count of data points in the time series over a time interval window.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maximum
Aggregates.Builder maximum(Double maximum)
The maximum value of the time series over a time interval window.
- Parameters:
maximum- The maximum value of the time series over a time interval window.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
minimum
Aggregates.Builder minimum(Double minimum)
The minimum value of the time series over a time interval window.
- Parameters:
minimum- The minimum value of the time series over a time interval window.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sum
Aggregates.Builder sum(Double sum)
The sum of the time series over a time interval window.
- Parameters:
sum- The sum of the time series over a time interval window.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
standardDeviation
Aggregates.Builder standardDeviation(Double standardDeviation)
The standard deviation of the time series over a time interval window.
- Parameters:
standardDeviation- The standard deviation of the time series over a time interval window.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-