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 [`DescribeDomains`](crate::operation::describe_domains::builders::DescribeDomainsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`domain_names(impl Into<String>)`](crate::operation::describe_domains::builders::DescribeDomainsFluentBuilder::domain_names) / [`set_domain_names(Option<Vec::<String>>)`](crate::operation::describe_domains::builders::DescribeDomainsFluentBuilder::set_domain_names):<br>required: **true**<br><p>Array of OpenSearch Service domain names that you want information about. You must specify at least one domain name.</p><br>
    /// - On success, responds with [`DescribeDomainsOutput`](crate::operation::describe_domains::DescribeDomainsOutput) with field(s):
    ///   - [`domain_status_list(Vec::<DomainStatus>)`](crate::operation::describe_domains::DescribeDomainsOutput::domain_status_list): <p>The status of the requested domains.</p>
    /// - On failure, responds with [`SdkError<DescribeDomainsError>`](crate::operation::describe_domains::DescribeDomainsError)
    pub fn describe_domains(&self) -> crate::operation::describe_domains::builders::DescribeDomainsFluentBuilder {
        crate::operation::describe_domains::builders::DescribeDomainsFluentBuilder::new(self.handle.clone())
    }
}