Struct aws_sdk_sagemaker::types::AdditionalS3DataSource
source · #[non_exhaustive]pub struct AdditionalS3DataSource {
pub s3_data_type: Option<AdditionalS3DataSourceDataType>,
pub s3_uri: Option<String>,
pub compression_type: Option<CompressionType>,
}
Expand description
A data source used for training or inference that is in addition to the input dataset or model data.
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_data_type: Option<AdditionalS3DataSourceDataType>
The data type of the additional data source that you specify for use in inference or training.
s3_uri: Option<String>
The uniform resource identifier (URI) used to identify an additional data source used in inference or training.
compression_type: Option<CompressionType>
The type of compression used for an additional data source used in inference or training. Specify None
if your additional data source is not compressed.
Implementations§
source§impl AdditionalS3DataSource
impl AdditionalS3DataSource
sourcepub fn s3_data_type(&self) -> Option<&AdditionalS3DataSourceDataType>
pub fn s3_data_type(&self) -> Option<&AdditionalS3DataSourceDataType>
The data type of the additional data source that you specify for use in inference or training.
sourcepub fn s3_uri(&self) -> Option<&str>
pub fn s3_uri(&self) -> Option<&str>
The uniform resource identifier (URI) used to identify an additional data source used in inference or training.
sourcepub fn compression_type(&self) -> Option<&CompressionType>
pub fn compression_type(&self) -> Option<&CompressionType>
The type of compression used for an additional data source used in inference or training. Specify None
if your additional data source is not compressed.
source§impl AdditionalS3DataSource
impl AdditionalS3DataSource
sourcepub fn builder() -> AdditionalS3DataSourceBuilder
pub fn builder() -> AdditionalS3DataSourceBuilder
Creates a new builder-style object to manufacture AdditionalS3DataSource
.
Trait Implementations§
source§impl Clone for AdditionalS3DataSource
impl Clone for AdditionalS3DataSource
source§fn clone(&self) -> AdditionalS3DataSource
fn clone(&self) -> AdditionalS3DataSource
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AdditionalS3DataSource
impl Debug for AdditionalS3DataSource
source§impl PartialEq for AdditionalS3DataSource
impl PartialEq for AdditionalS3DataSource
impl StructuralPartialEq for AdditionalS3DataSource
Auto Trait Implementations§
impl Freeze for AdditionalS3DataSource
impl RefUnwindSafe for AdditionalS3DataSource
impl Send for AdditionalS3DataSource
impl Sync for AdditionalS3DataSource
impl Unpin for AdditionalS3DataSource
impl UnwindSafe for AdditionalS3DataSource
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