// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListCertificateAuthorities`](crate::operation::list_certificate_authorities::builders::ListCertificateAuthoritiesFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_certificate_authorities::builders::ListCertificateAuthoritiesFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`cluster_name(impl Into<String>)`](crate::operation::list_certificate_authorities::builders::ListCertificateAuthoritiesFluentBuilder::cluster_name) / [`set_cluster_name(Option<String>)`](crate::operation::list_certificate_authorities::builders::ListCertificateAuthoritiesFluentBuilder::set_cluster_name):<br>required: **true**<br><p>The name of your cluster.</p><br>
/// - [`max_results(i32)`](crate::operation::list_certificate_authorities::builders::ListCertificateAuthoritiesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_certificate_authorities::builders::ListCertificateAuthoritiesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned <code>nextToken</code> value. If you don't specify a value, the default is 100 results.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_certificate_authorities::builders::ListCertificateAuthoritiesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_certificate_authorities::builders::ListCertificateAuthoritiesFluentBuilder::set_next_token):<br>required: **false**<br><p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the <code>nextToken</code> value. This value is null when there are no more results to return.</p><note> <p>This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.</p> </note><br>
/// - On success, responds with [`ListCertificateAuthoritiesOutput`](crate::operation::list_certificate_authorities::ListCertificateAuthoritiesOutput) with field(s):
/// - [`certificate_authorities(Option<Vec::<CertificateAuthoritySummary>>)`](crate::operation::list_certificate_authorities::ListCertificateAuthoritiesOutput::certificate_authorities): <p>A list of certificate authority summary objects, each containing basic information about a certificate authority, including its ID, signing status, and distribution status.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_certificate_authorities::ListCertificateAuthoritiesOutput::next_token): <p>The <code>nextToken</code> value to include in a future <code>ListCertificateAuthorities</code> request. When the results of a <code>ListCertificateAuthorities</code> request exceed <code>maxResults</code>, you can use this value to retrieve the next page of results. This value is null when there are no more results to return.</p><note> <p>This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.</p> </note>
/// - On failure, responds with [`SdkError<ListCertificateAuthoritiesError>`](crate::operation::list_certificate_authorities::ListCertificateAuthoritiesError)
pub fn list_certificate_authorities(&self) -> crate::operation::list_certificate_authorities::builders::ListCertificateAuthoritiesFluentBuilder {
crate::operation::list_certificate_authorities::builders::ListCertificateAuthoritiesFluentBuilder::new(self.handle.clone())
}
}