aws_sdk_iot/client/delete_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 [`DeleteAuthorizer`](crate::operation::delete_authorizer::builders::DeleteAuthorizerFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`authorizer_name(impl Into<String>)`](crate::operation::delete_authorizer::builders::DeleteAuthorizerFluentBuilder::authorizer_name) / [`set_authorizer_name(Option<String>)`](crate::operation::delete_authorizer::builders::DeleteAuthorizerFluentBuilder::set_authorizer_name):<br>required: **true**<br><p>The name of the authorizer to delete.</p><br>
7 /// - On success, responds with [`DeleteAuthorizerOutput`](crate::operation::delete_authorizer::DeleteAuthorizerOutput)
8 /// - On failure, responds with [`SdkError<DeleteAuthorizerError>`](crate::operation::delete_authorizer::DeleteAuthorizerError)
9 pub fn delete_authorizer(&self) -> crate::operation::delete_authorizer::builders::DeleteAuthorizerFluentBuilder {
10 crate::operation::delete_authorizer::builders::DeleteAuthorizerFluentBuilder::new(self.handle.clone())
11 }
12}