Struct aws_sdk_sagemaker::types::ProcessingS3Input
source · #[non_exhaustive]pub struct ProcessingS3Input {
pub s3_uri: Option<String>,
pub local_path: Option<String>,
pub s3_data_type: Option<ProcessingS3DataType>,
pub s3_input_mode: Option<ProcessingS3InputMode>,
pub s3_data_distribution_type: Option<ProcessingS3DataDistributionType>,
pub s3_compression_type: Option<ProcessingS3CompressionType>,
}
Expand description
Configuration for downloading input data from Amazon S3 into the processing container.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.s3_uri: Option<String>
The URI of the Amazon S3 prefix Amazon SageMaker downloads data required to run a processing job.
local_path: Option<String>
The local path in your container where you want Amazon SageMaker to write input data to. LocalPath
is an absolute path to the input data and must begin with /opt/ml/processing/
. LocalPath
is a required parameter when AppManaged
is False
(default).
s3_data_type: Option<ProcessingS3DataType>
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<ProcessingS3InputMode>
Whether to use File
or Pipe
input mode. In File mode, Amazon SageMaker copies the data from the input source onto the local ML storage volume before starting your processing container. This is the most commonly used input mode. In Pipe
mode, Amazon SageMaker streams input data from the source directly to your processing container into named pipes without using the ML storage volume.
s3_data_distribution_type: Option<ProcessingS3DataDistributionType>
Whether to distribute the data from Amazon S3 to all processing instances with FullyReplicated
, or whether the data from Amazon S3 is shared by Amazon S3 key, downloading one shard of data to each processing instance.
s3_compression_type: Option<ProcessingS3CompressionType>
Whether to GZIP-decompress the data in Amazon S3 as it is streamed into the processing container. Gzip
can only be used when Pipe
mode is specified as the S3InputMode
. In Pipe
mode, Amazon SageMaker streams input data from the source directly to your container without using the EBS volume.
Implementations§
source§impl ProcessingS3Input
impl ProcessingS3Input
sourcepub fn s3_uri(&self) -> Option<&str>
pub fn s3_uri(&self) -> Option<&str>
The URI of the Amazon S3 prefix Amazon SageMaker downloads data required to run a processing job.
sourcepub fn local_path(&self) -> Option<&str>
pub fn local_path(&self) -> Option<&str>
The local path in your container where you want Amazon SageMaker to write input data to. LocalPath
is an absolute path to the input data and must begin with /opt/ml/processing/
. LocalPath
is a required parameter when AppManaged
is False
(default).
sourcepub fn s3_data_type(&self) -> Option<&ProcessingS3DataType>
pub fn s3_data_type(&self) -> Option<&ProcessingS3DataType>
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.
sourcepub fn s3_input_mode(&self) -> Option<&ProcessingS3InputMode>
pub fn s3_input_mode(&self) -> Option<&ProcessingS3InputMode>
Whether to use File
or Pipe
input mode. In File mode, Amazon SageMaker copies the data from the input source onto the local ML storage volume before starting your processing container. This is the most commonly used input mode. In Pipe
mode, Amazon SageMaker streams input data from the source directly to your processing container into named pipes without using the ML storage volume.
sourcepub fn s3_data_distribution_type(
&self,
) -> Option<&ProcessingS3DataDistributionType>
pub fn s3_data_distribution_type( &self, ) -> Option<&ProcessingS3DataDistributionType>
Whether to distribute the data from Amazon S3 to all processing instances with FullyReplicated
, or whether the data from Amazon S3 is shared by Amazon S3 key, downloading one shard of data to each processing instance.
sourcepub fn s3_compression_type(&self) -> Option<&ProcessingS3CompressionType>
pub fn s3_compression_type(&self) -> Option<&ProcessingS3CompressionType>
Whether to GZIP-decompress the data in Amazon S3 as it is streamed into the processing container. Gzip
can only be used when Pipe
mode is specified as the S3InputMode
. In Pipe
mode, Amazon SageMaker streams input data from the source directly to your container without using the EBS volume.
source§impl ProcessingS3Input
impl ProcessingS3Input
sourcepub fn builder() -> ProcessingS3InputBuilder
pub fn builder() -> ProcessingS3InputBuilder
Creates a new builder-style object to manufacture ProcessingS3Input
.
Trait Implementations§
source§impl Clone for ProcessingS3Input
impl Clone for ProcessingS3Input
source§fn clone(&self) -> ProcessingS3Input
fn clone(&self) -> ProcessingS3Input
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ProcessingS3Input
impl Debug for ProcessingS3Input
source§impl PartialEq for ProcessingS3Input
impl PartialEq for ProcessingS3Input
impl StructuralPartialEq for ProcessingS3Input
Auto Trait Implementations§
impl Freeze for ProcessingS3Input
impl RefUnwindSafe for ProcessingS3Input
impl Send for ProcessingS3Input
impl Sync for ProcessingS3Input
impl Unpin for ProcessingS3Input
impl UnwindSafe for ProcessingS3Input
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more