aws_sdk_cloudsearch/client/describe_analysis_schemes.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 [`DescribeAnalysisSchemes`](crate::operation::describe_analysis_schemes::builders::DescribeAnalysisSchemesFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - [`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>
9 /// - On success, responds with [`DescribeAnalysisSchemesOutput`](crate::operation::describe_analysis_schemes::DescribeAnalysisSchemesOutput) with field(s):
10 /// - [`analysis_schemes(Vec::<AnalysisSchemeStatus>)`](crate::operation::describe_analysis_schemes::DescribeAnalysisSchemesOutput::analysis_schemes): <p>The analysis scheme descriptions.</p>
11 /// - On failure, responds with [`SdkError<DescribeAnalysisSchemesError>`](crate::operation::describe_analysis_schemes::DescribeAnalysisSchemesError)
12 pub fn describe_analysis_schemes(&self) -> crate::operation::describe_analysis_schemes::builders::DescribeAnalysisSchemesFluentBuilder {
13 crate::operation::describe_analysis_schemes::builders::DescribeAnalysisSchemesFluentBuilder::new(self.handle.clone())
14 }
15}