Class: Aws::ForecastService::Types::ListWhatIfForecastsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::ListWhatIfForecastsResponse
- Defined in:
- gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If the result of the previous request was truncated, the response includes a
NextToken
. -
#what_if_forecasts ⇒ Array<Types::WhatIfForecastSummary>
An array of
WhatIfForecasts
objects that describe the matched forecasts.
Instance Attribute Details
#next_token ⇒ String
If the result of the previous request was truncated, the response
includes a NextToken
. To retrieve the next set of results, use the
token in the next
 request. Tokens expire after 24 hours.
5566 5567 5568 5569 5570 5571 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 5566 class ListWhatIfForecastsResponse < Struct.new( :what_if_forecasts, :next_token) SENSITIVE = [] include Aws::Structure end |
#what_if_forecasts ⇒ Array<Types::WhatIfForecastSummary>
An array of WhatIfForecasts
objects that describe the matched
forecasts.
5566 5567 5568 5569 5570 5571 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 5566 class ListWhatIfForecastsResponse < Struct.new( :what_if_forecasts, :next_token) SENSITIVE = [] include Aws::Structure end |