You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::ForecastService::Types::PredictorSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::PredictorSummary
- Defined in:
- (unknown)
Overview
Provides a summary of the predictor properties that are used in the ListPredictors operation. To get the complete set of properties, call the DescribePredictor operation, and provide the listed PredictorArn.
Instance Attribute Summary collapse
-
#creation_time ⇒ Time
When the model training task was created.
-
#dataset_group_arn ⇒ String
The Amazon Resource Name (ARN) of the dataset group that contains the data used to train the predictor.
-
#last_modification_time ⇒ Time
Initially, the same as
CreationTime(status isCREATE_PENDING). -
#message ⇒ String
If an error occurred, an informational message about the error.
-
#predictor_arn ⇒ String
The ARN of the predictor.
-
#predictor_name ⇒ String
The name of the predictor.
-
#status ⇒ String
The status of the predictor.
Instance Attribute Details
#creation_time ⇒ Time
When the model training task was created.
#dataset_group_arn ⇒ String
The Amazon Resource Name (ARN) of the dataset group that contains the data used to train the predictor.
#last_modification_time ⇒ Time
Initially, the same as CreationTime (status is CREATE_PENDING).
Updated when training starts (status changed to CREATE_IN_PROGRESS),
and when training is complete (status changed to ACTIVE) or fails
(status changed to CREATE_FAILED).
#message ⇒ String
If an error occurred, an informational message about the error.
#predictor_arn ⇒ String
The ARN of the predictor.
#predictor_name ⇒ String
The name of the predictor.
#status ⇒ String
The status of the predictor. States include:
ACTIVECREATE_PENDING,CREATE_IN_PROGRESS,CREATE_FAILEDDELETE_PENDING,DELETE_IN_PROGRESS,DELETE_FAILEDUPDATE_PENDING,UPDATE_IN_PROGRESS,UPDATE_FAILED
Status of the predictor must be ACTIVE before you can use the
predictor to create a forecast.