[][src]Struct rusoto_sagemaker::ProcessingS3Input

pub struct ProcessingS3Input {
    pub local_path: Option<String>,
    pub s3_compression_type: Option<String>,
    pub s3_data_distribution_type: Option<String>,
    pub s3_data_type: String,
    pub s3_input_mode: Option<String>,
    pub s3_uri: String,
}

Configuration for processing job inputs in Amazon S3.

Fields

local_path: Option<String>

The local path to the Amazon S3 bucket where you want Amazon SageMaker to download the inputs to run a processing job. LocalPath is an absolute path to the input data. This is a required parameter when AppManaged is False (default).

s3_compression_type: Option<String>

Whether to use Gzip compression for Amazon S3 storage.

s3_data_distribution_type: Option<String>

Whether the data stored in Amazon S3 is FullyReplicated or ShardedByS3Key.

s3_data_type: String

Whether you use an S3Prefix or a ManifestFile for the data type. If you choose S3Prefix, S3Uri identifies a key name prefix. Amazon SageMaker uses all objects with the specified key name prefix for the processing job. 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 the processing job.

s3_input_mode: Option<String>

Whether to use File or Pipe input mode. In File mode, Amazon SageMaker copies the data from the input source onto the local Amazon Elastic Block Store (Amazon EBS) volumes before starting your training algorithm. This is the most commonly used input mode. In Pipe mode, Amazon SageMaker streams input data from the source directly to your algorithm without using the EBS volume.This is a required parameter when AppManaged is False (default).

s3_uri: String

The URI for the Amazon S3 storage where you want Amazon SageMaker to download the artifacts needed to run a processing job.

Trait Implementations

impl Clone for ProcessingS3Input[src]

impl Debug for ProcessingS3Input[src]

impl Default for ProcessingS3Input[src]

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

impl PartialEq<ProcessingS3Input> for ProcessingS3Input[src]

impl Serialize for ProcessingS3Input[src]

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