Interface Forecast.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Forecast.Builder,Forecast>,SdkBuilder<Forecast.Builder,Forecast>,SdkPojo
- Enclosing class:
- Forecast
public static interface Forecast.Builder extends SdkPojo, CopyableBuilder<Forecast.Builder,Forecast>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Forecast.Builderpredictions(Map<String,? extends Collection<DataPoint>> predictions)The forecast.-
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
-
predictions
Forecast.Builder predictions(Map<String,? extends Collection<DataPoint>> predictions)
The forecast.
The string of the string-to-array map is one of the following values:
-
p10
-
p50
-
p90
The default setting is
["0.1", "0.5", "0.9"]. Use the optionalForecastTypesparameter of the CreateForecast operation to change the values. The values will vary depending on how this is set, with a minimum of1and a maximum of5.- Parameters:
predictions- The forecast.The string of the string-to-array map is one of the following values:
-
p10
-
p50
-
p90
The default setting is
["0.1", "0.5", "0.9"]. Use the optionalForecastTypesparameter of the CreateForecast operation to change the values. The values will vary depending on how this is set, with a minimum of1and a maximum of5.-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
-