Struct aws_sdk_apptest::types::BatchStepInput
source · #[non_exhaustive]pub struct BatchStepInput {
pub resource: Option<MainframeResourceSummary>,
pub batch_job_name: String,
pub batch_job_parameters: Option<HashMap<String, String>>,
pub export_data_set_names: Option<Vec<String>>,
pub properties: Option<MainframeActionProperties>,
}
Expand description
Defines a batch step input.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.resource: Option<MainframeResourceSummary>
The resource of the batch step input.
batch_job_name: String
The batch job name of the batch step input.
batch_job_parameters: Option<HashMap<String, String>>
The batch job parameters of the batch step input.
export_data_set_names: Option<Vec<String>>
The export data set names of the batch step input.
properties: Option<MainframeActionProperties>
The properties of the batch step input.
Implementations§
source§impl BatchStepInput
impl BatchStepInput
sourcepub fn resource(&self) -> Option<&MainframeResourceSummary>
pub fn resource(&self) -> Option<&MainframeResourceSummary>
The resource of the batch step input.
sourcepub fn batch_job_name(&self) -> &str
pub fn batch_job_name(&self) -> &str
The batch job name of the batch step input.
sourcepub fn batch_job_parameters(&self) -> Option<&HashMap<String, String>>
pub fn batch_job_parameters(&self) -> Option<&HashMap<String, String>>
The batch job parameters of the batch step input.
sourcepub fn export_data_set_names(&self) -> &[String]
pub fn export_data_set_names(&self) -> &[String]
The export data set names of the batch step input.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .export_data_set_names.is_none()
.
sourcepub fn properties(&self) -> Option<&MainframeActionProperties>
pub fn properties(&self) -> Option<&MainframeActionProperties>
The properties of the batch step input.
source§impl BatchStepInput
impl BatchStepInput
sourcepub fn builder() -> BatchStepInputBuilder
pub fn builder() -> BatchStepInputBuilder
Creates a new builder-style object to manufacture BatchStepInput
.
Trait Implementations§
source§impl Clone for BatchStepInput
impl Clone for BatchStepInput
source§fn clone(&self) -> BatchStepInput
fn clone(&self) -> BatchStepInput
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 BatchStepInput
impl Debug for BatchStepInput
source§impl PartialEq for BatchStepInput
impl PartialEq for BatchStepInput
source§fn eq(&self, other: &BatchStepInput) -> bool
fn eq(&self, other: &BatchStepInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchStepInput
Auto Trait Implementations§
impl Freeze for BatchStepInput
impl RefUnwindSafe for BatchStepInput
impl Send for BatchStepInput
impl Sync for BatchStepInput
impl Unpin for BatchStepInput
impl UnwindSafe for BatchStepInput
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.