Interface CapacityForecast.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CapacityForecast.Builder,CapacityForecast>,SdkBuilder<CapacityForecast.Builder,CapacityForecast>,SdkPojo
- Enclosing class:
- CapacityForecast
public static interface CapacityForecast.Builder extends SdkPojo, CopyableBuilder<CapacityForecast.Builder,CapacityForecast>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CapacityForecast.Buildertimestamps(Instant... timestamps)The timestamps for the data points, in UTC format.CapacityForecast.Buildertimestamps(Collection<Instant> timestamps)The timestamps for the data points, in UTC format.CapacityForecast.Buildervalues(Double... values)The values of the data points.CapacityForecast.Buildervalues(Collection<Double> values)The values of the data points.-
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
-
timestamps
CapacityForecast.Builder timestamps(Collection<Instant> timestamps)
The timestamps for the data points, in UTC format.
- Parameters:
timestamps- The timestamps for the data points, in UTC format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timestamps
CapacityForecast.Builder timestamps(Instant... timestamps)
The timestamps for the data points, in UTC format.
- Parameters:
timestamps- The timestamps for the data points, in UTC format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
CapacityForecast.Builder values(Collection<Double> values)
The values of the data points.
- Parameters:
values- The values of the data points.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
CapacityForecast.Builder values(Double... values)
The values of the data points.
- Parameters:
values- The values of the data points.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-