[][src]Struct rusoto_personalize::DatasetImportJob

pub struct DatasetImportJob {
    pub creation_date_time: Option<f64>,
    pub data_source: Option<DataSource>,
    pub dataset_arn: Option<String>,
    pub dataset_import_job_arn: Option<String>,
    pub failure_reason: Option<String>,
    pub job_name: Option<String>,
    pub last_updated_date_time: Option<f64>,
    pub role_arn: Option<String>,
    pub status: Option<String>,
}

Describes a job that imports training data from a data source (Amazon S3 bucket) to an Amazon Personalize dataset. For more information, see CreateDatasetImportJob.

A dataset import job can be in one of the following states:

  • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

Fields

creation_date_time: Option<f64>

The creation date and time (in Unix time) of the dataset import job.

data_source: Option<DataSource>

The Amazon S3 bucket that contains the training data to import.

dataset_arn: Option<String>

The Amazon Resource Name (ARN) of the dataset that receives the imported data.

dataset_import_job_arn: Option<String>

The ARN of the dataset import job.

failure_reason: Option<String>

If a dataset import job fails, provides the reason why.

job_name: Option<String>

The name of the import job.

last_updated_date_time: Option<f64>

The date and time (in Unix time) the dataset was last updated.

role_arn: Option<String>

The ARN of the AWS Identity and Access Management (IAM) role that has permissions to read from the Amazon S3 data source.

status: Option<String>

The status of the dataset import job.

A dataset import job can be in one of the following states:

  • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

Trait Implementations

impl Clone for DatasetImportJob[src]

impl Debug for DatasetImportJob[src]

impl Default for DatasetImportJob[src]

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

impl PartialEq<DatasetImportJob> for DatasetImportJob[src]

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