aws_sdk_iot/client/describe_authorizer.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 [`DescribeAuthorizer`](crate::operation::describe_authorizer::builders::DescribeAuthorizerFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`authorizer_name(impl Into<String>)`](crate::operation::describe_authorizer::builders::DescribeAuthorizerFluentBuilder::authorizer_name) / [`set_authorizer_name(Option<String>)`](crate::operation::describe_authorizer::builders::DescribeAuthorizerFluentBuilder::set_authorizer_name):<br>required: **true**<br><p>The name of the authorizer to describe.</p><br>
7 /// - On success, responds with [`DescribeAuthorizerOutput`](crate::operation::describe_authorizer::DescribeAuthorizerOutput) with field(s):
8 /// - [`authorizer_description(Option<AuthorizerDescription>)`](crate::operation::describe_authorizer::DescribeAuthorizerOutput::authorizer_description): <p>The authorizer description.</p>
9 /// - On failure, responds with [`SdkError<DescribeAuthorizerError>`](crate::operation::describe_authorizer::DescribeAuthorizerError)
10 pub fn describe_authorizer(&self) -> crate::operation::describe_authorizer::builders::DescribeAuthorizerFluentBuilder {
11 crate::operation::describe_authorizer::builders::DescribeAuthorizerFluentBuilder::new(self.handle.clone())
12 }
13}