Struct aws_sdk_apptest::types::builders::Tn3270StepInputBuilder
source · #[non_exhaustive]pub struct Tn3270StepInputBuilder { /* private fields */ }
Expand description
A builder for Tn3270StepInput
.
Implementations§
source§impl Tn3270StepInputBuilder
impl Tn3270StepInputBuilder
sourcepub fn resource(self, input: MainframeResourceSummary) -> Self
pub fn resource(self, input: MainframeResourceSummary) -> Self
The resource of the TN3270 step input.
This field is required.sourcepub fn set_resource(self, input: Option<MainframeResourceSummary>) -> Self
pub fn set_resource(self, input: Option<MainframeResourceSummary>) -> Self
The resource of the TN3270 step input.
sourcepub fn get_resource(&self) -> &Option<MainframeResourceSummary>
pub fn get_resource(&self) -> &Option<MainframeResourceSummary>
The resource of the TN3270 step input.
sourcepub fn script(self, input: ScriptSummary) -> Self
pub fn script(self, input: ScriptSummary) -> Self
The script of the TN3270 step input.
This field is required.sourcepub fn set_script(self, input: Option<ScriptSummary>) -> Self
pub fn set_script(self, input: Option<ScriptSummary>) -> Self
The script of the TN3270 step input.
sourcepub fn get_script(&self) -> &Option<ScriptSummary>
pub fn get_script(&self) -> &Option<ScriptSummary>
The script of the TN3270 step input.
sourcepub fn export_data_set_names(self, input: impl Into<String>) -> Self
pub fn export_data_set_names(self, input: impl Into<String>) -> Self
Appends an item to export_data_set_names
.
To override the contents of this collection use set_export_data_set_names
.
The export data set names of the TN3270 step input.
sourcepub fn set_export_data_set_names(self, input: Option<Vec<String>>) -> Self
pub fn set_export_data_set_names(self, input: Option<Vec<String>>) -> Self
The export data set names of the TN3270 step input.
sourcepub fn get_export_data_set_names(&self) -> &Option<Vec<String>>
pub fn get_export_data_set_names(&self) -> &Option<Vec<String>>
The export data set names of the TN3270 step input.
sourcepub fn properties(self, input: MainframeActionProperties) -> Self
pub fn properties(self, input: MainframeActionProperties) -> Self
The properties of the TN3270 step input.
sourcepub fn set_properties(self, input: Option<MainframeActionProperties>) -> Self
pub fn set_properties(self, input: Option<MainframeActionProperties>) -> Self
The properties of the TN3270 step input.
sourcepub fn get_properties(&self) -> &Option<MainframeActionProperties>
pub fn get_properties(&self) -> &Option<MainframeActionProperties>
The properties of the TN3270 step input.
sourcepub fn build(self) -> Tn3270StepInput
pub fn build(self) -> Tn3270StepInput
Consumes the builder and constructs a Tn3270StepInput
.
Trait Implementations§
source§impl Clone for Tn3270StepInputBuilder
impl Clone for Tn3270StepInputBuilder
source§fn clone(&self) -> Tn3270StepInputBuilder
fn clone(&self) -> Tn3270StepInputBuilder
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 Tn3270StepInputBuilder
impl Debug for Tn3270StepInputBuilder
source§impl Default for Tn3270StepInputBuilder
impl Default for Tn3270StepInputBuilder
source§fn default() -> Tn3270StepInputBuilder
fn default() -> Tn3270StepInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for Tn3270StepInputBuilder
impl PartialEq for Tn3270StepInputBuilder
source§fn eq(&self, other: &Tn3270StepInputBuilder) -> bool
fn eq(&self, other: &Tn3270StepInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for Tn3270StepInputBuilder
Auto Trait Implementations§
impl Freeze for Tn3270StepInputBuilder
impl RefUnwindSafe for Tn3270StepInputBuilder
impl Send for Tn3270StepInputBuilder
impl Sync for Tn3270StepInputBuilder
impl Unpin for Tn3270StepInputBuilder
impl UnwindSafe for Tn3270StepInputBuilder
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.