Struct aws_sdk_apptest::types::builders::BatchStepInputBuilder
source · #[non_exhaustive]pub struct BatchStepInputBuilder { /* private fields */ }
Expand description
A builder for BatchStepInput
.
Implementations§
source§impl BatchStepInputBuilder
impl BatchStepInputBuilder
sourcepub fn resource(self, input: MainframeResourceSummary) -> Self
pub fn resource(self, input: MainframeResourceSummary) -> Self
The resource of the batch 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 batch step input.
sourcepub fn get_resource(&self) -> &Option<MainframeResourceSummary>
pub fn get_resource(&self) -> &Option<MainframeResourceSummary>
The resource of the batch step input.
sourcepub fn batch_job_name(self, input: impl Into<String>) -> Self
pub fn batch_job_name(self, input: impl Into<String>) -> Self
The batch job name of the batch step input.
This field is required.sourcepub fn set_batch_job_name(self, input: Option<String>) -> Self
pub fn set_batch_job_name(self, input: Option<String>) -> Self
The batch job name of the batch step input.
sourcepub fn get_batch_job_name(&self) -> &Option<String>
pub fn get_batch_job_name(&self) -> &Option<String>
The batch job name of the batch step input.
sourcepub fn batch_job_parameters(
self,
k: impl Into<String>,
v: impl Into<String>,
) -> Self
pub fn batch_job_parameters( self, k: impl Into<String>, v: impl Into<String>, ) -> Self
Adds a key-value pair to batch_job_parameters
.
To override the contents of this collection use set_batch_job_parameters
.
The batch job parameters of the batch step input.
sourcepub fn set_batch_job_parameters(
self,
input: Option<HashMap<String, String>>,
) -> Self
pub fn set_batch_job_parameters( self, input: Option<HashMap<String, String>>, ) -> Self
The batch job parameters of the batch step input.
sourcepub fn get_batch_job_parameters(&self) -> &Option<HashMap<String, String>>
pub fn get_batch_job_parameters(&self) -> &Option<HashMap<String, String>>
The batch job parameters of the batch 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 batch 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 batch 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 batch step input.
sourcepub fn properties(self, input: MainframeActionProperties) -> Self
pub fn properties(self, input: MainframeActionProperties) -> Self
The properties of the batch step input.
sourcepub fn set_properties(self, input: Option<MainframeActionProperties>) -> Self
pub fn set_properties(self, input: Option<MainframeActionProperties>) -> Self
The properties of the batch step input.
sourcepub fn get_properties(&self) -> &Option<MainframeActionProperties>
pub fn get_properties(&self) -> &Option<MainframeActionProperties>
The properties of the batch step input.
sourcepub fn build(self) -> Result<BatchStepInput, BuildError>
pub fn build(self) -> Result<BatchStepInput, BuildError>
Consumes the builder and constructs a BatchStepInput
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for BatchStepInputBuilder
impl Clone for BatchStepInputBuilder
source§fn clone(&self) -> BatchStepInputBuilder
fn clone(&self) -> BatchStepInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for BatchStepInputBuilder
impl Debug for BatchStepInputBuilder
source§impl Default for BatchStepInputBuilder
impl Default for BatchStepInputBuilder
source§fn default() -> BatchStepInputBuilder
fn default() -> BatchStepInputBuilder
source§impl PartialEq for BatchStepInputBuilder
impl PartialEq for BatchStepInputBuilder
source§fn eq(&self, other: &BatchStepInputBuilder) -> bool
fn eq(&self, other: &BatchStepInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchStepInputBuilder
Auto Trait Implementations§
impl Freeze for BatchStepInputBuilder
impl RefUnwindSafe for BatchStepInputBuilder
impl Send for BatchStepInputBuilder
impl Sync for BatchStepInputBuilder
impl Unpin for BatchStepInputBuilder
impl UnwindSafe for BatchStepInputBuilder
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