Interface RawMetricData.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RawMetricData.Builder,RawMetricData>,SdkBuilder<RawMetricData.Builder,RawMetricData>,SdkPojo
- Enclosing class:
- RawMetricData
public static interface RawMetricData.Builder extends SdkPojo, CopyableBuilder<RawMetricData.Builder,RawMetricData>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RawMetricData.BuildermetricName(String metricName)The name of the metric.RawMetricData.Builderstep(Integer step)The metric step (epoch).RawMetricData.Buildertimestamp(Instant timestamp)The time that the metric was recorded.RawMetricData.Buildervalue(Double value)The metric value.-
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
-
metricName
RawMetricData.Builder metricName(String metricName)
The name of the metric.
- Parameters:
metricName- The name of the metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timestamp
RawMetricData.Builder timestamp(Instant timestamp)
The time that the metric was recorded.
- Parameters:
timestamp- The time that the metric was recorded.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
step
RawMetricData.Builder step(Integer step)
The metric step (epoch).
- Parameters:
step- The metric step (epoch).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
RawMetricData.Builder value(Double value)
The metric value.
- Parameters:
value- The metric value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-