1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`BatchGetJobs`](crate::operation::batch_get_jobs::builders::BatchGetJobsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`job_names(impl Into<String>)`](crate::operation::batch_get_jobs::builders::BatchGetJobsFluentBuilder::job_names) / [`set_job_names(Option<Vec::<String>>)`](crate::operation::batch_get_jobs::builders::BatchGetJobsFluentBuilder::set_job_names):<br>required: **true**<br><p>A list of job names, which might be the names returned from the <code>ListJobs</code> operation.</p><br>
    /// - On success, responds with [`BatchGetJobsOutput`](crate::operation::batch_get_jobs::BatchGetJobsOutput) with field(s):
    ///   - [`jobs(Option<Vec::<Job>>)`](crate::operation::batch_get_jobs::BatchGetJobsOutput::jobs): <p>A list of job definitions.</p>
    ///   - [`jobs_not_found(Option<Vec::<String>>)`](crate::operation::batch_get_jobs::BatchGetJobsOutput::jobs_not_found): <p>A list of names of jobs not found.</p>
    /// - On failure, responds with [`SdkError<BatchGetJobsError>`](crate::operation::batch_get_jobs::BatchGetJobsError)
    pub fn batch_get_jobs(&self) -> crate::operation::batch_get_jobs::builders::BatchGetJobsFluentBuilder {
        crate::operation::batch_get_jobs::builders::BatchGetJobsFluentBuilder::new(self.handle.clone())
    }
}