[][src]Struct rusoto_forecast::CreateDatasetGroupRequest

pub struct CreateDatasetGroupRequest {
    pub dataset_arns: Option<Vec<String>>,
    pub dataset_group_name: String,
    pub domain: String,
}

Fields

dataset_arns: Option<Vec<String>>

An array of Amazon Resource Names (ARNs) of the datasets that you want to include in the dataset group.

dataset_group_name: String

A name for the dataset group.

domain: String

The domain associated with the dataset group. When you add a dataset to a dataset group, this value and the value specified for the Domain parameter of the CreateDataset operation must match.

The Domain and DatasetType that you choose determine the fields that must be present in training data that you import to a dataset. For example, if you choose the RETAIL domain and TARGET_TIME_SERIES as the DatasetType, Amazon Forecast requires that item_id, timestamp, and demand fields are present in your data. For more information, see howitworks-datasets-groups.

Trait Implementations

impl Clone for CreateDatasetGroupRequest[src]

impl Debug for CreateDatasetGroupRequest[src]

impl Default for CreateDatasetGroupRequest[src]

impl PartialEq<CreateDatasetGroupRequest> for CreateDatasetGroupRequest[src]

impl Serialize for CreateDatasetGroupRequest[src]

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