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 [`ListLoaderJobs`](crate::operation::list_loader_jobs::builders::ListLoaderJobsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`limit(i32)`](crate::operation::list_loader_jobs::builders::ListLoaderJobsFluentBuilder::limit) / [`set_limit(Option<i32>)`](crate::operation::list_loader_jobs::builders::ListLoaderJobsFluentBuilder::set_limit):<br>required: **false**<br><p>The number of load IDs to list. Must be a positive integer greater than zero and not more than <code>100</code> (which is the default).</p><br>
    ///   - [`include_queued_loads(bool)`](crate::operation::list_loader_jobs::builders::ListLoaderJobsFluentBuilder::include_queued_loads) / [`set_include_queued_loads(Option<bool>)`](crate::operation::list_loader_jobs::builders::ListLoaderJobsFluentBuilder::set_include_queued_loads):<br>required: **false**<br><p>An optional parameter that can be used to exclude the load IDs of queued load requests when requesting a list of load IDs by setting the parameter to <code>FALSE</code>. The default value is <code>TRUE</code>.</p><br>
    /// - On success, responds with [`ListLoaderJobsOutput`](crate::operation::list_loader_jobs::ListLoaderJobsOutput) with field(s):
    ///   - [`status(String)`](crate::operation::list_loader_jobs::ListLoaderJobsOutput::status): <p>Returns the status of the job list request.</p>
    ///   - [`payload(Option<LoaderIdResult>)`](crate::operation::list_loader_jobs::ListLoaderJobsOutput::payload): <p>The requested list of job IDs.</p>
    /// - On failure, responds with [`SdkError<ListLoaderJobsError>`](crate::operation::list_loader_jobs::ListLoaderJobsError)
    pub fn list_loader_jobs(&self) -> crate::operation::list_loader_jobs::builders::ListLoaderJobsFluentBuilder {
        crate::operation::list_loader_jobs::builders::ListLoaderJobsFluentBuilder::new(self.handle.clone())
    }
}