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 the all data points collected during the period.MetricQueryValue.Buildermax(Double max)The maximum of the values of the all data points collected during the period.MetricQueryValue.Buildermin(Double min)The minimum of the values of the all data points collected during the period.MetricQueryValue.Builderp90(Double p90)The 90th percentile of the values of the all data points collected during the period.MetricQueryValue.Builderstd(Double std)The standard deviation of the values of the all data points collected during the period.MetricQueryValue.Buildersum(Double sum)The sum of the values of the all data points collected during the 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, sdkFields
-
-
-
-
Method Detail
-
min
MetricQueryValue.Builder min(Double min)
The minimum of the values of the all data points collected during the period.
- Parameters:
min- The minimum of the values of the all data points collected during the 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 the all data points collected during the period.
- Parameters:
max- The maximum of the values of the all data points collected during the 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 the all data points collected during the period.
- Parameters:
sum- The sum of the values of the all data points collected during the 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 the all data points collected during the period.
- Parameters:
avg- The average of the values of the all data points collected during the 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 the all data points collected during the period.
- Parameters:
std- The standard deviation of the values of the all data points collected during the 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 the all data points collected during the period.
- Parameters:
p90- The 90th percentile of the values of the all data points collected during the period.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-