// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`StartBatchJob`](crate::operation::start_batch_job::builders::StartBatchJobFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`application_id(impl Into<String>)`](crate::operation::start_batch_job::builders::StartBatchJobFluentBuilder::application_id) / [`set_application_id(Option<String>)`](crate::operation::start_batch_job::builders::StartBatchJobFluentBuilder::set_application_id): <p>The unique identifier of the application associated with this batch job.</p>
/// - [`batch_job_identifier(BatchJobIdentifier)`](crate::operation::start_batch_job::builders::StartBatchJobFluentBuilder::batch_job_identifier) / [`set_batch_job_identifier(Option<BatchJobIdentifier>)`](crate::operation::start_batch_job::builders::StartBatchJobFluentBuilder::set_batch_job_identifier): <p>The unique identifier of the batch job.</p>
/// - [`job_params(HashMap<String, String>)`](crate::operation::start_batch_job::builders::StartBatchJobFluentBuilder::job_params) / [`set_job_params(Option<HashMap<String, String>>)`](crate::operation::start_batch_job::builders::StartBatchJobFluentBuilder::set_job_params): <p>The collection of batch job parameters. For details about limits for keys and values, see <a href="https://www.ibm.com/docs/en/workload-automation/9.3.0?topic=zos-coding-variables-in-jcl">Coding variables in JCL</a>.</p>
/// - On success, responds with [`StartBatchJobOutput`](crate::operation::start_batch_job::StartBatchJobOutput) with field(s):
/// - [`execution_id(Option<String>)`](crate::operation::start_batch_job::StartBatchJobOutput::execution_id): <p>The unique identifier of this execution of the batch job.</p>
/// - On failure, responds with [`SdkError<StartBatchJobError>`](crate::operation::start_batch_job::StartBatchJobError)
pub fn start_batch_job(
&self,
) -> crate::operation::start_batch_job::builders::StartBatchJobFluentBuilder {
crate::operation::start_batch_job::builders::StartBatchJobFluentBuilder::new(
self.handle.clone(),
)
}
}