#[non_exhaustive]pub struct StartBatchJobInputBuilder { /* private fields */ }Expand description
A builder for StartBatchJobInput.
Implementations§
source§impl StartBatchJobInputBuilder
impl StartBatchJobInputBuilder
sourcepub fn application_id(self, input: impl Into<String>) -> Self
pub fn application_id(self, input: impl Into<String>) -> Self
The unique identifier of the application associated with this batch job.
This field is required.sourcepub fn set_application_id(self, input: Option<String>) -> Self
pub fn set_application_id(self, input: Option<String>) -> Self
The unique identifier of the application associated with this batch job.
sourcepub fn get_application_id(&self) -> &Option<String>
pub fn get_application_id(&self) -> &Option<String>
The unique identifier of the application associated with this batch job.
sourcepub fn batch_job_identifier(self, input: BatchJobIdentifier) -> Self
pub fn batch_job_identifier(self, input: BatchJobIdentifier) -> Self
The unique identifier of the batch job.
This field is required.sourcepub fn set_batch_job_identifier(self, input: Option<BatchJobIdentifier>) -> Self
pub fn set_batch_job_identifier(self, input: Option<BatchJobIdentifier>) -> Self
The unique identifier of the batch job.
sourcepub fn get_batch_job_identifier(&self) -> &Option<BatchJobIdentifier>
pub fn get_batch_job_identifier(&self) -> &Option<BatchJobIdentifier>
The unique identifier of the batch job.
sourcepub fn job_params(self, k: impl Into<String>, v: impl Into<String>) -> Self
pub fn job_params(self, k: impl Into<String>, v: impl Into<String>) -> Self
Adds a key-value pair to job_params.
To override the contents of this collection use set_job_params.
The collection of batch job parameters. For details about limits for keys and values, see Coding variables in JCL.
sourcepub fn set_job_params(self, input: Option<HashMap<String, String>>) -> Self
pub fn set_job_params(self, input: Option<HashMap<String, String>>) -> Self
The collection of batch job parameters. For details about limits for keys and values, see Coding variables in JCL.
sourcepub fn get_job_params(&self) -> &Option<HashMap<String, String>>
pub fn get_job_params(&self) -> &Option<HashMap<String, String>>
The collection of batch job parameters. For details about limits for keys and values, see Coding variables in JCL.
sourcepub fn build(self) -> Result<StartBatchJobInput, BuildError>
pub fn build(self) -> Result<StartBatchJobInput, BuildError>
Consumes the builder and constructs a StartBatchJobInput.
source§impl StartBatchJobInputBuilder
impl StartBatchJobInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<StartBatchJobOutput, SdkError<StartBatchJobError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<StartBatchJobOutput, SdkError<StartBatchJobError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for StartBatchJobInputBuilder
impl Clone for StartBatchJobInputBuilder
source§fn clone(&self) -> StartBatchJobInputBuilder
fn clone(&self) -> StartBatchJobInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for StartBatchJobInputBuilder
impl Debug for StartBatchJobInputBuilder
source§impl Default for StartBatchJobInputBuilder
impl Default for StartBatchJobInputBuilder
source§fn default() -> StartBatchJobInputBuilder
fn default() -> StartBatchJobInputBuilder
source§impl PartialEq for StartBatchJobInputBuilder
impl PartialEq for StartBatchJobInputBuilder
source§fn eq(&self, other: &StartBatchJobInputBuilder) -> bool
fn eq(&self, other: &StartBatchJobInputBuilder) -> bool
self and other values to be equal, and is used
by ==.