Struct aws_sdk_apptest::types::builders::Tn3270StepOutputBuilder
source · #[non_exhaustive]pub struct Tn3270StepOutputBuilder { /* private fields */ }
Expand description
A builder for Tn3270StepOutput
.
Implementations§
source§impl Tn3270StepOutputBuilder
impl Tn3270StepOutputBuilder
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 TN3270 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 TN3270 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 TN3270 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 output location of the TN3270 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 output location of the TN3270 step output.
sourcepub fn get_dms_output_location(&self) -> &Option<String>
pub fn get_dms_output_location(&self) -> &Option<String>
The output location of the TN3270 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 TN3270 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 TN3270 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 TN3270 step output.
sourcepub fn script_output_location(self, input: impl Into<String>) -> Self
pub fn script_output_location(self, input: impl Into<String>) -> Self
The script output location of the TN3270 step output.
This field is required.sourcepub fn set_script_output_location(self, input: Option<String>) -> Self
pub fn set_script_output_location(self, input: Option<String>) -> Self
The script output location of the TN3270 step output.
sourcepub fn get_script_output_location(&self) -> &Option<String>
pub fn get_script_output_location(&self) -> &Option<String>
The script output location of the TN3270 step output.
sourcepub fn build(self) -> Result<Tn3270StepOutput, BuildError>
pub fn build(self) -> Result<Tn3270StepOutput, BuildError>
Consumes the builder and constructs a Tn3270StepOutput
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for Tn3270StepOutputBuilder
impl Clone for Tn3270StepOutputBuilder
source§fn clone(&self) -> Tn3270StepOutputBuilder
fn clone(&self) -> Tn3270StepOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for Tn3270StepOutputBuilder
impl Debug for Tn3270StepOutputBuilder
source§impl Default for Tn3270StepOutputBuilder
impl Default for Tn3270StepOutputBuilder
source§fn default() -> Tn3270StepOutputBuilder
fn default() -> Tn3270StepOutputBuilder
source§impl PartialEq for Tn3270StepOutputBuilder
impl PartialEq for Tn3270StepOutputBuilder
source§fn eq(&self, other: &Tn3270StepOutputBuilder) -> bool
fn eq(&self, other: &Tn3270StepOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for Tn3270StepOutputBuilder
Auto Trait Implementations§
impl Freeze for Tn3270StepOutputBuilder
impl RefUnwindSafe for Tn3270StepOutputBuilder
impl Send for Tn3270StepOutputBuilder
impl Sync for Tn3270StepOutputBuilder
impl Unpin for Tn3270StepOutputBuilder
impl UnwindSafe for Tn3270StepOutputBuilder
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
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>
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>
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 more