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 [`GetPendingJobExecutions`](crate::operation::get_pending_job_executions::builders::GetPendingJobExecutionsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`thing_name(impl Into<String>)`](crate::operation::get_pending_job_executions::builders::GetPendingJobExecutionsFluentBuilder::thing_name) / [`set_thing_name(Option<String>)`](crate::operation::get_pending_job_executions::builders::GetPendingJobExecutionsFluentBuilder::set_thing_name):<br>required: **true**<br><p>The name of the thing that is executing the job.</p><br>
    /// - On success, responds with [`GetPendingJobExecutionsOutput`](crate::operation::get_pending_job_executions::GetPendingJobExecutionsOutput) with field(s):
    ///   - [`in_progress_jobs(Option<Vec::<JobExecutionSummary>>)`](crate::operation::get_pending_job_executions::GetPendingJobExecutionsOutput::in_progress_jobs): <p>A list of JobExecutionSummary objects with status IN_PROGRESS.</p>
    ///   - [`queued_jobs(Option<Vec::<JobExecutionSummary>>)`](crate::operation::get_pending_job_executions::GetPendingJobExecutionsOutput::queued_jobs): <p>A list of JobExecutionSummary objects with status QUEUED.</p>
    /// - On failure, responds with [`SdkError<GetPendingJobExecutionsError>`](crate::operation::get_pending_job_executions::GetPendingJobExecutionsError)
    pub fn get_pending_job_executions(&self) -> crate::operation::get_pending_job_executions::builders::GetPendingJobExecutionsFluentBuilder {
        crate::operation::get_pending_job_executions::builders::GetPendingJobExecutionsFluentBuilder::new(self.handle.clone())
    }
}