1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeAnalysisSchemes`](crate::operation::describe_analysis_schemes::builders::DescribeAnalysisSchemesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`domain_name(impl Into<String>)`](crate::operation::describe_analysis_schemes::builders::DescribeAnalysisSchemesFluentBuilder::domain_name) / [`set_domain_name(Option<String>)`](crate::operation::describe_analysis_schemes::builders::DescribeAnalysisSchemesFluentBuilder::set_domain_name):<br>required: **true**<br><p>The name of the domain you want to describe.</p><br>
    ///   - [`analysis_scheme_names(impl Into<String>)`](crate::operation::describe_analysis_schemes::builders::DescribeAnalysisSchemesFluentBuilder::analysis_scheme_names) / [`set_analysis_scheme_names(Option<Vec::<String>>)`](crate::operation::describe_analysis_schemes::builders::DescribeAnalysisSchemesFluentBuilder::set_analysis_scheme_names):<br>required: **false**<br><p>The analysis schemes you want to describe.</p><br>
    ///   - [`deployed(bool)`](crate::operation::describe_analysis_schemes::builders::DescribeAnalysisSchemesFluentBuilder::deployed) / [`set_deployed(Option<bool>)`](crate::operation::describe_analysis_schemes::builders::DescribeAnalysisSchemesFluentBuilder::set_deployed):<br>required: **false**<br><p>Whether to display the deployed configuration (<code>true</code>) or include any pending changes (<code>false</code>). Defaults to <code>false</code>.</p><br>
    /// - On success, responds with [`DescribeAnalysisSchemesOutput`](crate::operation::describe_analysis_schemes::DescribeAnalysisSchemesOutput) with field(s):
    ///   - [`analysis_schemes(Vec::<AnalysisSchemeStatus>)`](crate::operation::describe_analysis_schemes::DescribeAnalysisSchemesOutput::analysis_schemes): <p>The analysis scheme descriptions.</p>
    /// - On failure, responds with [`SdkError<DescribeAnalysisSchemesError>`](crate::operation::describe_analysis_schemes::DescribeAnalysisSchemesError)
    pub fn describe_analysis_schemes(&self) -> crate::operation::describe_analysis_schemes::builders::DescribeAnalysisSchemesFluentBuilder {
        crate::operation::describe_analysis_schemes::builders::DescribeAnalysisSchemesFluentBuilder::new(self.handle.clone())
    }
}