[][src]Struct rusoto_forecast::ForecastSummary

pub struct ForecastSummary {
    pub creation_time: Option<f64>,
    pub dataset_group_arn: Option<String>,
    pub forecast_arn: Option<String>,
    pub forecast_name: Option<String>,
    pub last_modification_time: Option<f64>,
    pub message: Option<String>,
    pub predictor_arn: Option<String>,
    pub status: Option<String>,
}

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.

Fields

creation_time: Option<f64>

When the forecast creation task was created.

dataset_group_arn: Option<String>

The Amazon Resource Name (ARN) of the dataset group that provided the data used to train the predictor.

forecast_arn: Option<String>

The ARN of the forecast.

forecast_name: Option<String>

The name of the forecast.

last_modification_time: Option<f64>

Initially, the same as CreationTime (status is CREATE_PENDING). Updated when inference (creating the forecast) starts (status changed to CREATE_IN_PROGRESS), and when inference is complete (status changed to ACTIVE) or fails (status changed to CREATE_FAILED).

message: Option<String>

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

predictor_arn: Option<String>

The ARN of the predictor used to generate the forecast.

status: Option<String>

The status of the forecast. States include:

  • ACTIVE

  • CREATEPENDING, CREATEINPROGRESS, CREATEFAILED

  • DELETEPENDING, DELETEINPROGRESS, DELETEFAILED

The Status of the forecast must be ACTIVE before you can query or export the forecast.

Trait Implementations

impl Clone for ForecastSummary[src]

impl Debug for ForecastSummary[src]

impl Default for ForecastSummary[src]

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

impl PartialEq<ForecastSummary> for ForecastSummary[src]

impl StructuralPartialEq for ForecastSummary[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.