Class: Aws::ForecastService::Types::ForecastSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::ForecastSummary
- Defined in:
- gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb
Overview
Provides a summary of the forecast properties used in the
ListForecasts operation. To get the complete set of properties, call
the DescribeForecast operation, and provide the ForecastArn
that is
listed in the summary.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#created_using_auto_predictor ⇒ Boolean
Whether the Forecast was created from an AutoPredictor.
-
#creation_time ⇒ Time
When the forecast creation task was created.
-
#dataset_group_arn ⇒ String
The Amazon Resource Name (ARN) of the dataset group that provided the data used to train the predictor.
-
#forecast_arn ⇒ String
The ARN of the forecast.
-
#forecast_name ⇒ String
The name of the forecast.
-
#last_modification_time ⇒ Time
The last time the resource was modified.
-
#message ⇒ String
If an error occurred, an informational message about the error.
-
#predictor_arn ⇒ String
The ARN of the predictor used to generate the forecast.
-
#status ⇒ String
The status of the forecast.
Instance Attribute Details
#created_using_auto_predictor ⇒ Boolean
Whether the Forecast was created from an AutoPredictor.
4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 4483 class ForecastSummary < Struct.new( :forecast_arn, :forecast_name, :predictor_arn, :created_using_auto_predictor, :dataset_group_arn, :status, :message, :creation_time, :last_modification_time) SENSITIVE = [] include Aws::Structure end |
#creation_time ⇒ Time
When the forecast creation task was created.
4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 4483 class ForecastSummary < Struct.new( :forecast_arn, :forecast_name, :predictor_arn, :created_using_auto_predictor, :dataset_group_arn, :status, :message, :creation_time, :last_modification_time) SENSITIVE = [] include Aws::Structure end |
#dataset_group_arn ⇒ String
The Amazon Resource Name (ARN) of the dataset group that provided the data used to train the predictor.
4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 4483 class ForecastSummary < Struct.new( :forecast_arn, :forecast_name, :predictor_arn, :created_using_auto_predictor, :dataset_group_arn, :status, :message, :creation_time, :last_modification_time) SENSITIVE = [] include Aws::Structure end |
#forecast_arn ⇒ String
The ARN of the forecast.
4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 4483 class ForecastSummary < Struct.new( :forecast_arn, :forecast_name, :predictor_arn, :created_using_auto_predictor, :dataset_group_arn, :status, :message, :creation_time, :last_modification_time) SENSITIVE = [] include Aws::Structure end |
#forecast_name ⇒ String
The name of the forecast.
4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 4483 class ForecastSummary < Struct.new( :forecast_arn, :forecast_name, :predictor_arn, :created_using_auto_predictor, :dataset_group_arn, :status, :message, :creation_time, :last_modification_time) SENSITIVE = [] include Aws::Structure end |
#last_modification_time ⇒ Time
The last time the resource was modified. The timestamp depends on the status of the job:
CREATE_PENDING
- TheCreationTime
.CREATE_IN_PROGRESS
- The current timestamp.CREATE_STOPPING
- The current timestamp.CREATE_STOPPED
- When the job stopped.ACTIVE
orCREATE_FAILED
- When the job finished or failed.
4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 4483 class ForecastSummary < Struct.new( :forecast_arn, :forecast_name, :predictor_arn, :created_using_auto_predictor, :dataset_group_arn, :status, :message, :creation_time, :last_modification_time) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
If an error occurred, an informational message about the error.
4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 4483 class ForecastSummary < Struct.new( :forecast_arn, :forecast_name, :predictor_arn, :created_using_auto_predictor, :dataset_group_arn, :status, :message, :creation_time, :last_modification_time) SENSITIVE = [] include Aws::Structure end |
#predictor_arn ⇒ String
The ARN of the predictor used to generate the forecast.
4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 4483 class ForecastSummary < Struct.new( :forecast_arn, :forecast_name, :predictor_arn, :created_using_auto_predictor, :dataset_group_arn, :status, :message, :creation_time, :last_modification_time) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the forecast. States include:
ACTIVE
CREATE_PENDING
,CREATE_IN_PROGRESS
,CREATE_FAILED
CREATE_STOPPING
,CREATE_STOPPED
DELETE_PENDING
,DELETE_IN_PROGRESS
,DELETE_FAILED
Status
of the forecast must be ACTIVE
before you can query
or export the forecast.
4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 4483 class ForecastSummary < Struct.new( :forecast_arn, :forecast_name, :predictor_arn, :created_using_auto_predictor, :dataset_group_arn, :status, :message, :creation_time, :last_modification_time) SENSITIVE = [] include Aws::Structure end |