// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListRegistries`](crate::operation::list_registries::builders::ListRegistriesFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_registries::builders::ListRegistriesFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`max_results(i32)`](crate::operation::list_registries::builders::ListRegistriesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_registries::builders::ListRegistriesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the <code>nextToken</code> field when making another request to return the next batch of results.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_registries::builders::ListRegistriesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_registries::builders::ListRegistriesFluentBuilder::set_next_token):<br>required: **false**<br><p>If the total number of results is greater than the <code>maxResults</code> value provided in the request, enter the token returned in the <code>nextToken</code> field in the response in this field to return the next batch of results.</p><br>
/// - [`status(RegistryStatus)`](crate::operation::list_registries::builders::ListRegistriesFluentBuilder::status) / [`set_status(Option<RegistryStatus>)`](crate::operation::list_registries::builders::ListRegistriesFluentBuilder::set_status):<br>required: **false**<br><p>Filter registries by their current status. Possible values include <code>CREATING</code>, <code>READY</code>, <code>UPDATING</code>, <code>CREATE_FAILED</code>, <code>UPDATE_FAILED</code>, <code>DELETING</code>, and <code>DELETE_FAILED</code>.</p><br>
/// - [`authorizer_type(RegistryAuthorizerType)`](crate::operation::list_registries::builders::ListRegistriesFluentBuilder::authorizer_type) / [`set_authorizer_type(Option<RegistryAuthorizerType>)`](crate::operation::list_registries::builders::ListRegistriesFluentBuilder::set_authorizer_type):<br>required: **false**<br><p>Filter registries by their authorizer type. Possible values are <code>CUSTOM_JWT</code> and <code>AWS_IAM</code>. For more information about authorizer types, see the <code>RegistryAuthorizerType</code> enum.</p><br>
/// - On success, responds with [`ListRegistriesOutput`](crate::operation::list_registries::ListRegistriesOutput) with field(s):
/// - [`registries(Vec::<RegistrySummary>)`](crate::operation::list_registries::ListRegistriesOutput::registries): <p>The list of registry summaries. For details about the fields in each summary, see the <code>RegistrySummary</code> data type.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_registries::ListRegistriesOutput::next_token): <p>If the total number of results is greater than the <code>maxResults</code> value provided in the request, use this token when making another request in the <code>nextToken</code> field to return the next batch of results.</p>
/// - On failure, responds with [`SdkError<ListRegistriesError>`](crate::operation::list_registries::ListRegistriesError)
pub fn list_registries(&self) -> crate::operation::list_registries::builders::ListRegistriesFluentBuilder {
crate::operation::list_registries::builders::ListRegistriesFluentBuilder::new(self.handle.clone())
}
}