[][src]Struct rusoto_forecast::DescribeForecastResponse

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

Fields

creation_time: Option<f64>

When the forecast creation task was created.

dataset_group_arn: Option<String>

The ARN of the dataset group that provided the data used to train the predictor.

forecast_arn: Option<String>

The forecast ARN as specified in the request.

forecast_name: Option<String>

The name of the forecast.

forecast_types: Option<Vec<String>>

The quantiles at which probabilistic forecasts were generated.

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 DescribeForecastResponse[src]

impl Debug for DescribeForecastResponse[src]

impl Default for DescribeForecastResponse[src]

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

impl PartialEq<DescribeForecastResponse> for DescribeForecastResponse[src]

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