Interface MetricValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MetricValue.Builder,MetricValue>,SdkBuilder<MetricValue.Builder,MetricValue>,SdkPojo
- Enclosing class:
- MetricValue
@Mutable @NotThreadSafe public static interface MetricValue.Builder extends SdkPojo, CopyableBuilder<MetricValue.Builder,MetricValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MetricValue.Buildermetric(String metric)The name of the metric.MetricValue.Buildermetric(Metric metric)The name of the metric.MetricValue.Buildervalue(Double value)The numerical value of the metric for the specified statistic and time 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
-
metric
MetricValue.Builder metric(String metric)
The name of the metric.
-
metric
MetricValue.Builder metric(Metric metric)
The name of the metric.
-
value
MetricValue.Builder value(Double value)
The numerical value of the metric for the specified statistic and time period.
- Parameters:
value- The numerical value of the metric for the specified statistic and time period.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-