[][src]Struct rusoto_forecast::DatasetImportJobSummary

pub struct DatasetImportJobSummary {
    pub creation_time: Option<f64>,
    pub data_source: Option<DataSource>,
    pub dataset_import_job_arn: Option<String>,
    pub dataset_import_job_name: Option<String>,
    pub last_modification_time: Option<f64>,
    pub message: Option<String>,
    pub status: Option<String>,
}

Provides a summary of the dataset import job properties used in the ListDatasetImportJobs operation. To get the complete set of properties, call the DescribeDatasetImportJob operation, and provide the DatasetImportJobArn.

Fields

creation_time: Option<f64>

When the dataset import job was created.

data_source: Option<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 includes an AWS Key Management Service (KMS) key.

dataset_import_job_arn: Option<String>

The Amazon Resource Name (ARN) of the dataset import job.

dataset_import_job_name: Option<String>

The name of the dataset import job.

last_modification_time: Option<f64>

The last time that the dataset was modified. The time depends on the status of the job, as follows:

  • CREATEPENDING - The same time as CreationTime.

  • CREATEINPROGRESS - The current timestamp.

  • ACTIVE or CREATEFAILED - When the job finished or failed.

message: Option<String>

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

status: Option<String>

The status of the dataset import job. The status is reflected in the status of the dataset. For example, when the import job status is CREATEINPROGRESS, the status of the dataset is UPDATEINPROGRESS. States include:

  • ACTIVE

  • CREATEPENDING, CREATEINPROGRESS, CREATEFAILED

  • DELETEPENDING, DELETEINPROGRESS, DELETEFAILED

Trait Implementations

impl Clone for DatasetImportJobSummary[src]

impl Debug for DatasetImportJobSummary[src]

impl Default for DatasetImportJobSummary[src]

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

impl PartialEq<DatasetImportJobSummary> for DatasetImportJobSummary[src]

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