[][src]Struct rusoto_forecast::CreateForecastRequest

pub struct CreateForecastRequest {
    pub forecast_name: String,
    pub forecast_types: Option<Vec<String>>,
    pub predictor_arn: String,
}

Fields

forecast_name: String

A name for the forecast.

forecast_types: Option<Vec<String>>

The quantiles at which probabilistic forecasts are generated. You can specify up to 5 quantiles per forecast. Accepted values include 0.01 to 0.99 (increments of .01 only) and mean. The mean forecast is different from the median (0.50) when the distribution is not symmetric (e.g. Beta, Negative Binomial). The default value is ["0.1", "0.5", "0.9"].

predictor_arn: String

The Amazon Resource Name (ARN) of the predictor to use to generate the forecast.

Trait Implementations

impl Clone for CreateForecastRequest[src]

impl Debug for CreateForecastRequest[src]

impl Default for CreateForecastRequest[src]

impl PartialEq<CreateForecastRequest> for CreateForecastRequest[src]

impl Serialize for CreateForecastRequest[src]

impl StructuralPartialEq for CreateForecastRequest[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> From<T> 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> Sealed<T> for T where
    T: ?Sized

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.