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(String timestamp)The timestamp of the specific forecast.DataPoint.Buildervalue(Double value)The forecast 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
-
timestamp
DataPoint.Builder timestamp(String timestamp)
The timestamp of the specific forecast.
- Parameters:
timestamp- The timestamp of the specific forecast.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
DataPoint.Builder value(Double value)
The forecast value.
- Parameters:
value- The forecast value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-