aws_sdk_opensearch/client/describe_domain_nodes.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 [`DescribeDomainNodes`](crate::operation::describe_domain_nodes::builders::DescribeDomainNodesFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`domain_name(impl 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):<br>required: **true**<br><p>The name of the domain.</p><br>
7 /// - On success, responds with [`DescribeDomainNodesOutput`](crate::operation::describe_domain_nodes::DescribeDomainNodesOutput) with field(s):
8 /// - [`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>
9 /// - On failure, responds with [`SdkError<DescribeDomainNodesError>`](crate::operation::describe_domain_nodes::DescribeDomainNodesError)
10 pub fn describe_domain_nodes(&self) -> crate::operation::describe_domain_nodes::builders::DescribeDomainNodesFluentBuilder {
11 crate::operation::describe_domain_nodes::builders::DescribeDomainNodesFluentBuilder::new(self.handle.clone())
12 }
13}