Struct aws_sdk_sagemaker::types::builders::DataSourceBuilder
source · #[non_exhaustive]pub struct DataSourceBuilder { /* private fields */ }
Expand description
A builder for DataSource
.
Implementations§
source§impl DataSourceBuilder
impl DataSourceBuilder
sourcepub fn s3_data_source(self, input: S3DataSource) -> Self
pub fn s3_data_source(self, input: S3DataSource) -> Self
The S3 location of the data source that is associated with a channel.
sourcepub fn set_s3_data_source(self, input: Option<S3DataSource>) -> Self
pub fn set_s3_data_source(self, input: Option<S3DataSource>) -> Self
The S3 location of the data source that is associated with a channel.
sourcepub fn get_s3_data_source(&self) -> &Option<S3DataSource>
pub fn get_s3_data_source(&self) -> &Option<S3DataSource>
The S3 location of the data source that is associated with a channel.
sourcepub fn file_system_data_source(self, input: FileSystemDataSource) -> Self
pub fn file_system_data_source(self, input: FileSystemDataSource) -> Self
The file system that is associated with a channel.
sourcepub fn set_file_system_data_source(
self,
input: Option<FileSystemDataSource>,
) -> Self
pub fn set_file_system_data_source( self, input: Option<FileSystemDataSource>, ) -> Self
The file system that is associated with a channel.
sourcepub fn get_file_system_data_source(&self) -> &Option<FileSystemDataSource>
pub fn get_file_system_data_source(&self) -> &Option<FileSystemDataSource>
The file system that is associated with a channel.
sourcepub fn build(self) -> DataSource
pub fn build(self) -> DataSource
Consumes the builder and constructs a DataSource
.
Trait Implementations§
source§impl Clone for DataSourceBuilder
impl Clone for DataSourceBuilder
source§fn clone(&self) -> DataSourceBuilder
fn clone(&self) -> DataSourceBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DataSourceBuilder
impl Debug for DataSourceBuilder
source§impl Default for DataSourceBuilder
impl Default for DataSourceBuilder
source§fn default() -> DataSourceBuilder
fn default() -> DataSourceBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DataSourceBuilder
impl PartialEq for DataSourceBuilder
impl StructuralPartialEq for DataSourceBuilder
Auto Trait Implementations§
impl Freeze for DataSourceBuilder
impl RefUnwindSafe for DataSourceBuilder
impl Send for DataSourceBuilder
impl Sync for DataSourceBuilder
impl Unpin for DataSourceBuilder
impl UnwindSafe for DataSourceBuilder
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
Mutably borrows from an owned value. Read more
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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.