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