1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetAnalyzer`](crate::operation::get_analyzer::builders::GetAnalyzerFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`analyzer_name(impl Into<String>)`](crate::operation::get_analyzer::builders::GetAnalyzerFluentBuilder::analyzer_name) / [`set_analyzer_name(Option<String>)`](crate::operation::get_analyzer::builders::GetAnalyzerFluentBuilder::set_analyzer_name):<br>required: **true**<br><p>The name of the analyzer retrieved.</p><br>
    /// - On success, responds with [`GetAnalyzerOutput`](crate::operation::get_analyzer::GetAnalyzerOutput) with field(s):
    ///   - [`analyzer(Option<AnalyzerSummary>)`](crate::operation::get_analyzer::GetAnalyzerOutput::analyzer): <p>An <code>AnalyzerSummary</code> object that contains information about the analyzer.</p>
    /// - On failure, responds with [`SdkError<GetAnalyzerError>`](crate::operation::get_analyzer::GetAnalyzerError)
    pub fn get_analyzer(&self) -> crate::operation::get_analyzer::builders::GetAnalyzerFluentBuilder {
        crate::operation::get_analyzer::builders::GetAnalyzerFluentBuilder::new(self.handle.clone())
    }
}