aws_sdk_iot/client/list_authorizers.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`ListAuthorizers`](crate::operation::list_authorizers::builders::ListAuthorizersFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_authorizers::builders::ListAuthorizersFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`page_size(i32)`](crate::operation::list_authorizers::builders::ListAuthorizersFluentBuilder::page_size) / [`set_page_size(Option<i32>)`](crate::operation::list_authorizers::builders::ListAuthorizersFluentBuilder::set_page_size):<br>required: **false**<br><p>The maximum number of results to return at one time.</p><br>
8 /// - [`marker(impl Into<String>)`](crate::operation::list_authorizers::builders::ListAuthorizersFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::list_authorizers::builders::ListAuthorizersFluentBuilder::set_marker):<br>required: **false**<br><p>A marker used to get the next set of results.</p><br>
9 /// - [`ascending_order(bool)`](crate::operation::list_authorizers::builders::ListAuthorizersFluentBuilder::ascending_order) / [`set_ascending_order(Option<bool>)`](crate::operation::list_authorizers::builders::ListAuthorizersFluentBuilder::set_ascending_order):<br>required: **false**<br><p>Return the list of authorizers in ascending alphabetical order.</p><br>
10 /// - [`status(AuthorizerStatus)`](crate::operation::list_authorizers::builders::ListAuthorizersFluentBuilder::status) / [`set_status(Option<AuthorizerStatus>)`](crate::operation::list_authorizers::builders::ListAuthorizersFluentBuilder::set_status):<br>required: **false**<br><p>The status of the list authorizers request.</p><br>
11 /// - On success, responds with [`ListAuthorizersOutput`](crate::operation::list_authorizers::ListAuthorizersOutput) with field(s):
12 /// - [`authorizers(Option<Vec::<AuthorizerSummary>>)`](crate::operation::list_authorizers::ListAuthorizersOutput::authorizers): <p>The authorizers.</p>
13 /// - [`next_marker(Option<String>)`](crate::operation::list_authorizers::ListAuthorizersOutput::next_marker): <p>A marker used to get the next set of results.</p>
14 /// - On failure, responds with [`SdkError<ListAuthorizersError>`](crate::operation::list_authorizers::ListAuthorizersError)
15 pub fn list_authorizers(&self) -> crate::operation::list_authorizers::builders::ListAuthorizersFluentBuilder {
16 crate::operation::list_authorizers::builders::ListAuthorizersFluentBuilder::new(self.handle.clone())
17 }
18}