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 stamp for the data point in UTC format.Datapoint.Buildervalue(Double value)The value of the data point.-
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
-
timestamp
Datapoint.Builder timestamp(Instant timestamp)
The time stamp for the data point in UTC format.
- Parameters:
timestamp- The time stamp for the data point in UTC format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
Datapoint.Builder value(Double value)
The value of the data point.
- Parameters:
value- The value of the data point.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-