aws_sdk_accessanalyzer/client/delete_analyzer.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 [`DeleteAnalyzer`](crate::operation::delete_analyzer::builders::DeleteAnalyzerFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`analyzer_name(impl Into<String>)`](crate::operation::delete_analyzer::builders::DeleteAnalyzerFluentBuilder::analyzer_name) / [`set_analyzer_name(Option<String>)`](crate::operation::delete_analyzer::builders::DeleteAnalyzerFluentBuilder::set_analyzer_name):<br>required: **true**<br><p>The name of the analyzer to delete.</p><br>
7 /// - [`client_token(impl Into<String>)`](crate::operation::delete_analyzer::builders::DeleteAnalyzerFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::delete_analyzer::builders::DeleteAnalyzerFluentBuilder::set_client_token):<br>required: **false**<br><p>A client token.</p><br>
8 /// - On success, responds with [`DeleteAnalyzerOutput`](crate::operation::delete_analyzer::DeleteAnalyzerOutput)
9 /// - On failure, responds with [`SdkError<DeleteAnalyzerError>`](crate::operation::delete_analyzer::DeleteAnalyzerError)
10 pub fn delete_analyzer(&self) -> crate::operation::delete_analyzer::builders::DeleteAnalyzerFluentBuilder {
11 crate::operation::delete_analyzer::builders::DeleteAnalyzerFluentBuilder::new(self.handle.clone())
12 }
13}