1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListExportJobs`](crate::operation::list_export_jobs::builders::ListExportJobsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_export_jobs::builders::ListExportJobsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_export_jobs::builders::ListExportJobsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_export_jobs::builders::ListExportJobsFluentBuilder::set_next_token):<br>required: **false**<br><p>The pagination token returned from a previous call to <code>ListExportJobs</code> to indicate the position in the list of export jobs.</p><br>
    ///   - [`page_size(i32)`](crate::operation::list_export_jobs::builders::ListExportJobsFluentBuilder::page_size) / [`set_page_size(Option<i32>)`](crate::operation::list_export_jobs::builders::ListExportJobsFluentBuilder::set_page_size):<br>required: **false**<br><p>Maximum number of export jobs to return at once. Use this parameter to paginate results. If additional export jobs exist beyond the specified limit, the <code>NextToken</code> element is sent in the response. Use the <code>NextToken</code> value in subsequent calls to <code>ListExportJobs</code> to retrieve additional export jobs.</p><br>
    ///   - [`export_source_type(ExportSourceType)`](crate::operation::list_export_jobs::builders::ListExportJobsFluentBuilder::export_source_type) / [`set_export_source_type(Option<ExportSourceType>)`](crate::operation::list_export_jobs::builders::ListExportJobsFluentBuilder::set_export_source_type):<br>required: **false**<br><p>A value used to list export jobs that have a certain <code>ExportSourceType</code>.</p><br>
    ///   - [`job_status(JobStatus)`](crate::operation::list_export_jobs::builders::ListExportJobsFluentBuilder::job_status) / [`set_job_status(Option<JobStatus>)`](crate::operation::list_export_jobs::builders::ListExportJobsFluentBuilder::set_job_status):<br>required: **false**<br><p>A value used to list export jobs that have a certain <code>JobStatus</code>.</p><br>
    /// - On success, responds with [`ListExportJobsOutput`](crate::operation::list_export_jobs::ListExportJobsOutput) with field(s):
    ///   - [`export_jobs(Option<Vec::<ExportJobSummary>>)`](crate::operation::list_export_jobs::ListExportJobsOutput::export_jobs): <p>A list of the export job summaries.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_export_jobs::ListExportJobsOutput::next_token): <p>A string token indicating that there might be additional export jobs available to be listed. Use this token to a subsequent call to <code>ListExportJobs</code> with the same parameters to retrieve the next page of export jobs.</p>
    /// - On failure, responds with [`SdkError<ListExportJobsError>`](crate::operation::list_export_jobs::ListExportJobsError)
    pub fn list_export_jobs(&self) -> crate::operation::list_export_jobs::builders::ListExportJobsFluentBuilder {
        crate::operation::list_export_jobs::builders::ListExportJobsFluentBuilder::new(self.handle.clone())
    }
}