Struct aws_sdk_transfer::types::builders::InputFileLocationBuilder
source · #[non_exhaustive]pub struct InputFileLocationBuilder { /* private fields */ }Expand description
A builder for InputFileLocation.
Implementations§
source§impl InputFileLocationBuilder
impl InputFileLocationBuilder
sourcepub fn s3_file_location(self, input: S3InputFileLocation) -> Self
pub fn s3_file_location(self, input: S3InputFileLocation) -> Self
Specifies the details for the Amazon S3 file that's being copied or decrypted.
sourcepub fn set_s3_file_location(self, input: Option<S3InputFileLocation>) -> Self
pub fn set_s3_file_location(self, input: Option<S3InputFileLocation>) -> Self
Specifies the details for the Amazon S3 file that's being copied or decrypted.
sourcepub fn get_s3_file_location(&self) -> &Option<S3InputFileLocation>
pub fn get_s3_file_location(&self) -> &Option<S3InputFileLocation>
Specifies the details for the Amazon S3 file that's being copied or decrypted.
sourcepub fn efs_file_location(self, input: EfsFileLocation) -> Self
pub fn efs_file_location(self, input: EfsFileLocation) -> Self
Specifies the details for the Amazon Elastic File System (Amazon EFS) file that's being decrypted.
sourcepub fn set_efs_file_location(self, input: Option<EfsFileLocation>) -> Self
pub fn set_efs_file_location(self, input: Option<EfsFileLocation>) -> Self
Specifies the details for the Amazon Elastic File System (Amazon EFS) file that's being decrypted.
sourcepub fn get_efs_file_location(&self) -> &Option<EfsFileLocation>
pub fn get_efs_file_location(&self) -> &Option<EfsFileLocation>
Specifies the details for the Amazon Elastic File System (Amazon EFS) file that's being decrypted.
sourcepub fn build(self) -> InputFileLocation
pub fn build(self) -> InputFileLocation
Consumes the builder and constructs a InputFileLocation.
Trait Implementations§
source§impl Clone for InputFileLocationBuilder
impl Clone for InputFileLocationBuilder
source§fn clone(&self) -> InputFileLocationBuilder
fn clone(&self) -> InputFileLocationBuilder
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 InputFileLocationBuilder
impl Debug for InputFileLocationBuilder
source§impl Default for InputFileLocationBuilder
impl Default for InputFileLocationBuilder
source§fn default() -> InputFileLocationBuilder
fn default() -> InputFileLocationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for InputFileLocationBuilder
impl PartialEq for InputFileLocationBuilder
impl StructuralPartialEq for InputFileLocationBuilder
Auto Trait Implementations§
impl Freeze for InputFileLocationBuilder
impl RefUnwindSafe for InputFileLocationBuilder
impl Send for InputFileLocationBuilder
impl Sync for InputFileLocationBuilder
impl Unpin for InputFileLocationBuilder
impl UnwindSafe for InputFileLocationBuilder
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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.