Class: Aws::ForecastQueryService::Types::Forecast
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastQueryService::Types::Forecast
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-forecastqueryservice/types.rb
Overview
Provides information about a forecast. Returned as part of the QueryForecast response.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#predictions ⇒ Hash<String,Array<Types::DataPoint>>
The forecast.
Instance Attribute Details
#predictions ⇒ Hash<String,Array<Types::DataPoint>>
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 optional `ForecastTypes` parameter of the [CreateForecast] operation to change the values. The values will vary depending on how this is set, with a minimum of `1` and a maximum of `5.`
[1]: docs.aws.amazon.com/forecast/latest/dg/API_CreateForecast.html
59 60 61 62 63 |
# File 'lib/aws-sdk-forecastqueryservice/types.rb', line 59 class Forecast < Struct.new( :predictions) SENSITIVE = [] include Aws::Structure end |