Interface DataPoint.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DataPoint.Builder,DataPoint>,SdkBuilder<DataPoint.Builder,DataPoint>,SdkPojo
- Enclosing class:
- DataPoint
public static interface DataPoint.Builder extends SdkPojo, CopyableBuilder<DataPoint.Builder,DataPoint>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataPoint.Buildertimestamp(Instant timestamp)The time, in epoch format, associated with a particularValue.DataPoint.Buildervalue(Double value)The actual value associated with a particularTimestamp.-
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
-
timestamp
DataPoint.Builder timestamp(Instant timestamp)
The time, in epoch format, associated with a particular
Value.- Parameters:
timestamp- The time, in epoch format, associated with a particularValue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
DataPoint.Builder value(Double value)
The actual value associated with a particular
Timestamp.- Parameters:
value- The actual value associated with a particularTimestamp.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-