aws_sdk_apigatewayv2/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 /// - [`api_id(impl Into<String>)`](crate::operation::delete_authorizer::builders::DeleteAuthorizerFluentBuilder::api_id) / [`set_api_id(Option<String>)`](crate::operation::delete_authorizer::builders::DeleteAuthorizerFluentBuilder::set_api_id):<br>required: **true**<br><p>The API identifier.</p><br>
7 /// - [`authorizer_id(impl Into<String>)`](crate::operation::delete_authorizer::builders::DeleteAuthorizerFluentBuilder::authorizer_id) / [`set_authorizer_id(Option<String>)`](crate::operation::delete_authorizer::builders::DeleteAuthorizerFluentBuilder::set_authorizer_id):<br>required: **true**<br><p>The authorizer identifier.</p><br>
8 /// - On success, responds with [`DeleteAuthorizerOutput`](crate::operation::delete_authorizer::DeleteAuthorizerOutput)
9 /// - On failure, responds with [`SdkError<DeleteAuthorizerError>`](crate::operation::delete_authorizer::DeleteAuthorizerError)
10 pub fn delete_authorizer(&self) -> crate::operation::delete_authorizer::builders::DeleteAuthorizerFluentBuilder {
11 crate::operation::delete_authorizer::builders::DeleteAuthorizerFluentBuilder::new(self.handle.clone())
12 }
13}