Struct aws_sdk_transfer::types::InputFileLocation
source · #[non_exhaustive]pub struct InputFileLocation {
pub s3_file_location: Option<S3InputFileLocation>,
pub efs_file_location: Option<EfsFileLocation>,
}
Expand description
Specifies the location for the file that's being processed.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.s3_file_location: Option<S3InputFileLocation>
Specifies the details for the Amazon S3 file that's being copied or decrypted.
efs_file_location: Option<EfsFileLocation>
Specifies the details for the Amazon Elastic File System (Amazon EFS) file that's being decrypted.
Implementations§
source§impl InputFileLocation
impl InputFileLocation
sourcepub fn s3_file_location(&self) -> Option<&S3InputFileLocation>
pub fn 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) -> Option<&EfsFileLocation>
pub fn efs_file_location(&self) -> Option<&EfsFileLocation>
Specifies the details for the Amazon Elastic File System (Amazon EFS) file that's being decrypted.
source§impl InputFileLocation
impl InputFileLocation
sourcepub fn builder() -> InputFileLocationBuilder
pub fn builder() -> InputFileLocationBuilder
Creates a new builder-style object to manufacture InputFileLocation
.
Trait Implementations§
source§impl Clone for InputFileLocation
impl Clone for InputFileLocation
source§fn clone(&self) -> InputFileLocation
fn clone(&self) -> InputFileLocation
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 InputFileLocation
impl Debug for InputFileLocation
source§impl PartialEq for InputFileLocation
impl PartialEq for InputFileLocation
source§fn eq(&self, other: &InputFileLocation) -> bool
fn eq(&self, other: &InputFileLocation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InputFileLocation
Auto Trait Implementations§
impl RefUnwindSafe for InputFileLocation
impl Send for InputFileLocation
impl Sync for InputFileLocation
impl Unpin for InputFileLocation
impl UnwindSafe for InputFileLocation
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> 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>
Creates a shared type from an unshared type.