// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListArchiveExports`](crate::operation::list_archive_exports::builders::ListArchiveExportsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_archive_exports::builders::ListArchiveExportsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`archive_id(impl Into<String>)`](crate::operation::list_archive_exports::builders::ListArchiveExportsFluentBuilder::archive_id) / [`set_archive_id(Option<String>)`](crate::operation::list_archive_exports::builders::ListArchiveExportsFluentBuilder::set_archive_id):<br>required: **true**<br><p>The identifier of the archive.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_archive_exports::builders::ListArchiveExportsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_archive_exports::builders::ListArchiveExportsFluentBuilder::set_next_token):<br>required: **false**<br><p>If NextToken is returned, there are more results available. The value of NextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.</p><br>
/// - [`page_size(i32)`](crate::operation::list_archive_exports::builders::ListArchiveExportsFluentBuilder::page_size) / [`set_page_size(Option<i32>)`](crate::operation::list_archive_exports::builders::ListArchiveExportsFluentBuilder::set_page_size):<br>required: **false**<br><p>The maximum number of archive export jobs that are returned per call. You can use NextToken to obtain further pages of archives.</p><br>
/// - On success, responds with [`ListArchiveExportsOutput`](crate::operation::list_archive_exports::ListArchiveExportsOutput) with field(s):
/// - [`exports(Option<Vec::<ExportSummary>>)`](crate::operation::list_archive_exports::ListArchiveExportsOutput::exports): <p>The list of export job identifiers and statuses.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_archive_exports::ListArchiveExportsOutput::next_token): <p>If present, use to retrieve the next page of results.</p>
/// - On failure, responds with [`SdkError<ListArchiveExportsError>`](crate::operation::list_archive_exports::ListArchiveExportsError)
pub fn list_archive_exports(&self) -> crate::operation::list_archive_exports::builders::ListArchiveExportsFluentBuilder {
crate::operation::list_archive_exports::builders::ListArchiveExportsFluentBuilder::new(self.handle.clone())
}
}