Struct aws_sdk_apptest::types::builders::BatchStepOutputBuilder
source · #[non_exhaustive]pub struct BatchStepOutputBuilder { /* private fields */ }
Expand description
A builder for BatchStepOutput
.
Implementations§
source§impl BatchStepOutputBuilder
impl BatchStepOutputBuilder
sourcepub fn data_set_export_location(self, input: impl Into<String>) -> Self
pub fn data_set_export_location(self, input: impl Into<String>) -> Self
The data set export location of the batch step output.
sourcepub fn set_data_set_export_location(self, input: Option<String>) -> Self
pub fn set_data_set_export_location(self, input: Option<String>) -> Self
The data set export location of the batch step output.
sourcepub fn get_data_set_export_location(&self) -> &Option<String>
pub fn get_data_set_export_location(&self) -> &Option<String>
The data set export location of the batch step output.
sourcepub fn dms_output_location(self, input: impl Into<String>) -> Self
pub fn dms_output_location(self, input: impl Into<String>) -> Self
The Database Migration Service (DMS) output location of the batch step output.
sourcepub fn set_dms_output_location(self, input: Option<String>) -> Self
pub fn set_dms_output_location(self, input: Option<String>) -> Self
The Database Migration Service (DMS) output location of the batch step output.
sourcepub fn get_dms_output_location(&self) -> &Option<String>
pub fn get_dms_output_location(&self) -> &Option<String>
The Database Migration Service (DMS) output location of the batch step output.
sourcepub fn data_set_details(self, input: DataSet) -> Self
pub fn data_set_details(self, input: DataSet) -> Self
Appends an item to data_set_details
.
To override the contents of this collection use set_data_set_details
.
The data set details of the batch step output.
sourcepub fn set_data_set_details(self, input: Option<Vec<DataSet>>) -> Self
pub fn set_data_set_details(self, input: Option<Vec<DataSet>>) -> Self
The data set details of the batch step output.
sourcepub fn get_data_set_details(&self) -> &Option<Vec<DataSet>>
pub fn get_data_set_details(&self) -> &Option<Vec<DataSet>>
The data set details of the batch step output.
sourcepub fn build(self) -> BatchStepOutput
pub fn build(self) -> BatchStepOutput
Consumes the builder and constructs a BatchStepOutput
.
Trait Implementations§
source§impl Clone for BatchStepOutputBuilder
impl Clone for BatchStepOutputBuilder
source§fn clone(&self) -> BatchStepOutputBuilder
fn clone(&self) -> BatchStepOutputBuilder
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 BatchStepOutputBuilder
impl Debug for BatchStepOutputBuilder
source§impl Default for BatchStepOutputBuilder
impl Default for BatchStepOutputBuilder
source§fn default() -> BatchStepOutputBuilder
fn default() -> BatchStepOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for BatchStepOutputBuilder
impl PartialEq for BatchStepOutputBuilder
source§fn eq(&self, other: &BatchStepOutputBuilder) -> bool
fn eq(&self, other: &BatchStepOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchStepOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchStepOutputBuilder
impl RefUnwindSafe for BatchStepOutputBuilder
impl Send for BatchStepOutputBuilder
impl Sync for BatchStepOutputBuilder
impl Unpin for BatchStepOutputBuilder
impl UnwindSafe for BatchStepOutputBuilder
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.