Struct aws_sdk_apptest::types::builders::InputFileBuilder
source · #[non_exhaustive]pub struct InputFileBuilder { /* private fields */ }
Expand description
A builder for InputFile
.
Implementations§
source§impl InputFileBuilder
impl InputFileBuilder
sourcepub fn source_location(self, input: impl Into<String>) -> Self
pub fn source_location(self, input: impl Into<String>) -> Self
The source location of the input file.
This field is required.sourcepub fn set_source_location(self, input: Option<String>) -> Self
pub fn set_source_location(self, input: Option<String>) -> Self
The source location of the input file.
sourcepub fn get_source_location(&self) -> &Option<String>
pub fn get_source_location(&self) -> &Option<String>
The source location of the input file.
sourcepub fn target_location(self, input: impl Into<String>) -> Self
pub fn target_location(self, input: impl Into<String>) -> Self
The target location of the input file.
This field is required.sourcepub fn set_target_location(self, input: Option<String>) -> Self
pub fn set_target_location(self, input: Option<String>) -> Self
The target location of the input file.
sourcepub fn get_target_location(&self) -> &Option<String>
pub fn get_target_location(&self) -> &Option<String>
The target location of the input file.
sourcepub fn file_metadata(self, input: FileMetadata) -> Self
pub fn file_metadata(self, input: FileMetadata) -> Self
The file metadata of the input file.
This field is required.sourcepub fn set_file_metadata(self, input: Option<FileMetadata>) -> Self
pub fn set_file_metadata(self, input: Option<FileMetadata>) -> Self
The file metadata of the input file.
sourcepub fn get_file_metadata(&self) -> &Option<FileMetadata>
pub fn get_file_metadata(&self) -> &Option<FileMetadata>
The file metadata of the input file.
Trait Implementations§
source§impl Clone for InputFileBuilder
impl Clone for InputFileBuilder
source§fn clone(&self) -> InputFileBuilder
fn clone(&self) -> InputFileBuilder
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 InputFileBuilder
impl Debug for InputFileBuilder
source§impl Default for InputFileBuilder
impl Default for InputFileBuilder
source§fn default() -> InputFileBuilder
fn default() -> InputFileBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for InputFileBuilder
impl PartialEq for InputFileBuilder
source§fn eq(&self, other: &InputFileBuilder) -> bool
fn eq(&self, other: &InputFileBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InputFileBuilder
Auto Trait Implementations§
impl Freeze for InputFileBuilder
impl RefUnwindSafe for InputFileBuilder
impl Send for InputFileBuilder
impl Sync for InputFileBuilder
impl Unpin for InputFileBuilder
impl UnwindSafe for InputFileBuilder
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>
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.