Interface MetricQueryValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MetricQueryValue.Builder,MetricQueryValue>,SdkBuilder<MetricQueryValue.Builder,MetricQueryValue>,SdkPojo
- Enclosing class:
- MetricQueryValue
public static interface MetricQueryValue.Builder extends SdkPojo, CopyableBuilder<MetricQueryValue.Builder,MetricQueryValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MetricQueryValue.Builderavg(Double avg)The average of the values of all data points collected during the aggregation period.MetricQueryValue.Buildermax(Double max)The maximum of the values of all the data points collected during the aggregation period.MetricQueryValue.Buildermin(Double min)The minimum of the values of all data points collected during the aggregation period.MetricQueryValue.Builderp90(Double p90)The 90th percentile of the values of all data points collected during the aggregation period.MetricQueryValue.Builderstd(Double std)The standard deviation of the values of all data points collected during the aggregation period.MetricQueryValue.Buildersum(Double sum)The sum of the values of all data points collected during the aggregation period.-
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 Detail
-
min
MetricQueryValue.Builder min(Double min)
The minimum of the values of all data points collected during the aggregation period.
- Parameters:
min- The minimum of the values of all data points collected during the aggregation period.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
max
MetricQueryValue.Builder max(Double max)
The maximum of the values of all the data points collected during the aggregation period.
- Parameters:
max- The maximum of the values of all the data points collected during the aggregation period.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sum
MetricQueryValue.Builder sum(Double sum)
The sum of the values of all data points collected during the aggregation period.
- Parameters:
sum- The sum of the values of all data points collected during the aggregation period.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
avg
MetricQueryValue.Builder avg(Double avg)
The average of the values of all data points collected during the aggregation period.
- Parameters:
avg- The average of the values of all data points collected during the aggregation period.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
std
MetricQueryValue.Builder std(Double std)
The standard deviation of the values of all data points collected during the aggregation period.
- Parameters:
std- The standard deviation of the values of all data points collected during the aggregation period.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
p90
MetricQueryValue.Builder p90(Double p90)
The 90th percentile of the values of all data points collected during the aggregation period.
- Parameters:
p90- The 90th percentile of the values of all data points collected during the aggregation period.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-