1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeDomainNodes`](crate::operation::describe_domain_nodes::builders::DescribeDomainNodesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`domain_name(impl ::std::convert::Into<String>)`](crate::operation::describe_domain_nodes::builders::DescribeDomainNodesFluentBuilder::domain_name) / [`set_domain_name(Option<String>)`](crate::operation::describe_domain_nodes::builders::DescribeDomainNodesFluentBuilder::set_domain_name): <p>The name of the domain.</p>
    /// - On success, responds with [`DescribeDomainNodesOutput`](crate::operation::describe_domain_nodes::DescribeDomainNodesOutput) with field(s):
    ///   - [`domain_nodes_status_list(Option<Vec<DomainNodesStatus>>)`](crate::operation::describe_domain_nodes::DescribeDomainNodesOutput::domain_nodes_status_list): <p>Contains nodes information list <code>DomainNodesStatusList</code> with details about the all nodes on the requested domain.</p>
    /// - On failure, responds with [`SdkError<DescribeDomainNodesError>`](crate::operation::describe_domain_nodes::DescribeDomainNodesError)
    pub fn describe_domain_nodes(
        &self,
    ) -> crate::operation::describe_domain_nodes::builders::DescribeDomainNodesFluentBuilder {
        crate::operation::describe_domain_nodes::builders::DescribeDomainNodesFluentBuilder::new(
            self.handle.clone(),
        )
    }
}