[][src]Struct rusoto_sagemaker::TransformS3DataSource

pub struct TransformS3DataSource {
    pub s3_data_type: String,
    pub s3_uri: String,
}

Describes the S3 data source.

Fields

s3_data_type: String

If you choose S3Prefix, S3Uri identifies a key name prefix. Amazon SageMaker uses all objects with the specified key name prefix for batch transform.

If you choose ManifestFile, S3Uri identifies an object that is a manifest file containing a list of object keys that you want Amazon SageMaker to use for batch transform.

The following values are compatible: ManifestFile, S3Prefix

The following value is not compatible: AugmentedManifestFile

s3_uri: String

Depending on the value specified for the S3DataType, identifies either a key name prefix or a manifest. For example:

Trait Implementations

impl PartialEq<TransformS3DataSource> for TransformS3DataSource[src]

impl Default for TransformS3DataSource[src]

impl Clone for TransformS3DataSource[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for TransformS3DataSource[src]

impl Serialize for TransformS3DataSource[src]

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

Auto Trait Implementations

impl Send for TransformS3DataSource

impl Sync for TransformS3DataSource

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self