[][src]Struct rusoto_forecast::DescribePredictorResponse

pub struct DescribePredictorResponse {
    pub algorithm_arn: Option<String>,
    pub auto_ml_algorithm_arns: Option<Vec<String>>,
    pub creation_time: Option<f64>,
    pub dataset_import_job_arns: Option<Vec<String>>,
    pub encryption_config: Option<EncryptionConfig>,
    pub evaluation_parameters: Option<EvaluationParameters>,
    pub featurization_config: Option<FeaturizationConfig>,
    pub forecast_horizon: Option<i64>,
    pub hpo_config: Option<HyperParameterTuningJobConfig>,
    pub input_data_config: Option<InputDataConfig>,
    pub last_modification_time: Option<f64>,
    pub message: Option<String>,
    pub perform_auto_ml: Option<bool>,
    pub perform_hpo: Option<bool>,
    pub predictor_arn: Option<String>,
    pub predictor_execution_details: Option<PredictorExecutionDetails>,
    pub predictor_name: Option<String>,
    pub status: Option<String>,
    pub training_parameters: Option<HashMap<String, String>>,
}

Fields

algorithm_arn: Option<String>

The Amazon Resource Name (ARN) of the algorithm used for model training.

auto_ml_algorithm_arns: Option<Vec<String>>

When PerformAutoML is specified, the ARN of the chosen algorithm.

creation_time: Option<f64>

When the model training task was created.

dataset_import_job_arns: Option<Vec<String>>

An array of the ARNs of the dataset import jobs used to import training data for the predictor.

encryption_config: Option<EncryptionConfig>

An AWS Key Management Service (KMS) key and the AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the key.

evaluation_parameters: Option<EvaluationParameters>

Used to override the default evaluation parameters of the specified algorithm. Amazon Forecast evaluates a predictor by splitting a dataset into training data and testing data. The evaluation parameters define how to perform the split and the number of iterations.

featurization_config: Option<FeaturizationConfig>

The featurization configuration.

forecast_horizon: Option<i64>

The number of time-steps of the forecast. The forecast horizon is also called the prediction length.

hpo_config: Option<HyperParameterTuningJobConfig>

The hyperparameter override values for the algorithm.

input_data_config: Option<InputDataConfig>

Describes the dataset group that contains the data to use to train the predictor.

last_modification_time: Option<f64>

Initially, the same as CreationTime (when the status is CREATE_PENDING). This value is updated when training starts (when the status changes to CREATE_IN_PROGRESS), and when training has completed (when the status changes to ACTIVE) or fails (when the status changes to CREATE_FAILED).

message: Option<String>

If an error occurred, an informational message about the error.

perform_auto_ml: Option<bool>

Whether the predictor is set to perform AutoML.

perform_hpo: Option<bool>

Whether the predictor is set to perform hyperparameter optimization (HPO).

predictor_arn: Option<String>

The ARN of the predictor.

predictor_execution_details: Option<PredictorExecutionDetails>

Details on the the status and results of the backtests performed to evaluate the accuracy of the predictor. You specify the number of backtests to perform when you call the operation.

predictor_name: Option<String>

The name of the predictor.

status: Option<String>

The status of the predictor. States include:

  • ACTIVE

  • CREATEPENDING, CREATEINPROGRESS, CREATEFAILED

  • DELETEPENDING, DELETEINPROGRESS, DELETEFAILED

  • UPDATEPENDING, UPDATEINPROGRESS, UPDATEFAILED

The Status of the predictor must be ACTIVE before you can use the predictor to create a forecast.

training_parameters: Option<HashMap<String, String>>

The default training parameters or overrides selected during model training. If using the AutoML algorithm or if HPO is turned on while using the DeepAR+ algorithms, the optimized values for the chosen hyperparameters are returned. For more information, see aws-forecast-choosing-recipes.

Trait Implementations

impl Clone for DescribePredictorResponse[src]

impl Debug for DescribePredictorResponse[src]

impl Default for DescribePredictorResponse[src]

impl<'de> Deserialize<'de> for DescribePredictorResponse[src]

impl PartialEq<DescribePredictorResponse> for DescribePredictorResponse[src]

impl StructuralPartialEq for DescribePredictorResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.