1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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):<br>required: **true**<br><p>The unique identifier of the application associated with this batch job.</p><br>
    ///   - [`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):<br>required: **true**<br><p>The unique identifier of the batch job.</p><br>
    ///   - [`job_params(impl Into<String>, impl Into<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):<br>required: **false**<br><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><br>
    /// - On success, responds with [`StartBatchJobOutput`](crate::operation::start_batch_job::StartBatchJobOutput) with field(s):
    ///   - [`execution_id(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())
    }
}