Struct aws_sdk_apptest::types::builders::BatchBuilder
source · #[non_exhaustive]pub struct BatchBuilder { /* private fields */ }
Expand description
A builder for Batch
.
Implementations§
source§impl BatchBuilder
impl BatchBuilder
sourcepub fn batch_job_name(self, input: impl Into<String>) -> Self
pub fn batch_job_name(self, input: impl Into<String>) -> Self
The job name of the batch.
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 job name of the batch.
sourcepub fn get_batch_job_name(&self) -> &Option<String>
pub fn get_batch_job_name(&self) -> &Option<String>
The job name of the batch.
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.
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.
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.
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.
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.
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.
Trait Implementations§
source§impl Clone for BatchBuilder
impl Clone for BatchBuilder
source§fn clone(&self) -> BatchBuilder
fn clone(&self) -> BatchBuilder
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 BatchBuilder
impl Debug for BatchBuilder
source§impl Default for BatchBuilder
impl Default for BatchBuilder
source§fn default() -> BatchBuilder
fn default() -> BatchBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for BatchBuilder
impl PartialEq for BatchBuilder
source§fn eq(&self, other: &BatchBuilder) -> bool
fn eq(&self, other: &BatchBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchBuilder
Auto Trait Implementations§
impl Freeze for BatchBuilder
impl RefUnwindSafe for BatchBuilder
impl Send for BatchBuilder
impl Sync for BatchBuilder
impl Unpin for BatchBuilder
impl UnwindSafe for BatchBuilder
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.