[][src]Struct rusoto_personalize::CreateDatasetImportJobRequest

pub struct CreateDatasetImportJobRequest {
    pub data_source: DataSource,
    pub dataset_arn: String,
    pub job_name: String,
    pub role_arn: String,
}

Fields

data_source: DataSource

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

dataset_arn: String

The ARN of the dataset that receives the imported data.

job_name: String

The name for the dataset import job.

role_arn: String

The ARN of the IAM role that has permissions to read from the Amazon S3 data source.

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> 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.