[][src]Struct rusoto_forecast::CreateDatasetImportJobRequest

pub struct CreateDatasetImportJobRequest {
    pub data_source: DataSource,
    pub dataset_arn: String,
    pub dataset_import_job_name: String,
    pub timestamp_format: Option<String>,
}

Fields

data_source: DataSource

The location of the training data to import and an AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the data. The training data must be stored in an Amazon S3 bucket.

If encryption is used, DataSource must include an AWS Key Management Service (KMS) key and the IAM role must allow Amazon Forecast permission to access the key. The KMS key and IAM role must match those specified in the EncryptionConfig parameter of the CreateDataset operation.

dataset_arn: String

The Amazon Resource Name (ARN) of the Amazon Forecast dataset that you want to import data to.

dataset_import_job_name: String

The name for the dataset import job. We recommend including the current timestamp in the name, for example, 20190721DatasetImport. This can help you avoid getting a ResourceAlreadyExistsException exception.

timestamp_format: Option<String>

The format of timestamps in the dataset. The format that you specify depends on the DataFrequency specified when the dataset was created. The following formats are supported

  • "yyyy-MM-dd"

    For the following data frequencies: Y, M, W, and D

  • "yyyy-MM-dd HH:mm:ss"

    For the following data frequencies: H, 30min, 15min, and 1min; and optionally, for: Y, M, W, and D

If the format isn't specified, Amazon Forecast expects the format to be "yyyy-MM-dd HH:mm:ss".

Trait Implementations

impl Clone for CreateDatasetImportJobRequest[src]

impl Debug for CreateDatasetImportJobRequest[src]

impl Default for CreateDatasetImportJobRequest[src]

impl PartialEq<CreateDatasetImportJobRequest> for CreateDatasetImportJobRequest[src]

impl Serialize for CreateDatasetImportJobRequest[src]

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