Interface FrameMetricDatum.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FrameMetricDatum.Builder,FrameMetricDatum>,SdkBuilder<FrameMetricDatum.Builder,FrameMetricDatum>,SdkPojo
- Enclosing class:
- FrameMetricDatum
public static interface FrameMetricDatum.Builder extends SdkPojo, CopyableBuilder<FrameMetricDatum.Builder,FrameMetricDatum>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default FrameMetricDatum.BuilderframeMetric(Consumer<FrameMetric.Builder> frameMetric)Sets the value of the FrameMetric property for this object.FrameMetricDatum.BuilderframeMetric(FrameMetric frameMetric)Sets the value of the FrameMetric property for this object.FrameMetricDatum.Buildervalues(Double... values)A list of values that are associated with a frame metric.FrameMetricDatum.Buildervalues(Collection<Double> values)A list of values that are associated with a frame 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
frameMetric
FrameMetricDatum.Builder frameMetric(FrameMetric frameMetric)
Sets the value of the FrameMetric property for this object.- Parameters:
frameMetric- The new value for the FrameMetric property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
frameMetric
default FrameMetricDatum.Builder frameMetric(Consumer<FrameMetric.Builder> frameMetric)
Sets the value of the FrameMetric property for this object. This is a convenience method that creates an instance of theFrameMetric.Builderavoiding the need to create one manually viaFrameMetric.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toframeMetric(FrameMetric).- Parameters:
frameMetric- a consumer that will call methods onFrameMetric.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
frameMetric(FrameMetric)
-
values
FrameMetricDatum.Builder values(Collection<Double> values)
A list of values that are associated with a frame metric.
- Parameters:
values- A list of values that are associated with a frame metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
FrameMetricDatum.Builder values(Double... values)
A list of values that are associated with a frame metric.
- Parameters:
values- A list of values that are associated with a frame metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-