// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeNode`](crate::operation::describe_node::builders::DescribeNodeFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`cluster_id(impl Into<String>)`](crate::operation::describe_node::builders::DescribeNodeFluentBuilder::cluster_id) / [`set_cluster_id(Option<String>)`](crate::operation::describe_node::builders::DescribeNodeFluentBuilder::set_cluster_id):<br>required: **true**<br>The ID of the cluster<br>
/// - [`node_id(impl Into<String>)`](crate::operation::describe_node::builders::DescribeNodeFluentBuilder::node_id) / [`set_node_id(Option<String>)`](crate::operation::describe_node::builders::DescribeNodeFluentBuilder::set_node_id):<br>required: **true**<br>The ID of the node.<br>
/// - On success, responds with [`DescribeNodeOutput`](crate::operation::describe_node::DescribeNodeOutput) with field(s):
/// - [`arn(Option<String>)`](crate::operation::describe_node::DescribeNodeOutput::arn): The ARN of the Node. It is automatically assigned when the Node is created.
/// - [`channel_placement_groups(Option<Vec::<String>>)`](crate::operation::describe_node::DescribeNodeOutput::channel_placement_groups): An array of IDs. Each ID is one ChannelPlacementGroup that is associated with this Node. Empty if the Node is not yet associated with any groups.
/// - [`cluster_id(Option<String>)`](crate::operation::describe_node::DescribeNodeOutput::cluster_id): The ID of the Cluster that the Node belongs to.
/// - [`connection_state(Option<NodeConnectionState>)`](crate::operation::describe_node::DescribeNodeOutput::connection_state): The current connection state of the Node.
/// - [`id(Option<String>)`](crate::operation::describe_node::DescribeNodeOutput::id): The unique ID of the Node. Unique in the Cluster. The ID is the resource-id portion of the ARN.
/// - [`instance_arn(Option<String>)`](crate::operation::describe_node::DescribeNodeOutput::instance_arn): The ARN of the EC2 instance hosting the Node.
/// - [`name(Option<String>)`](crate::operation::describe_node::DescribeNodeOutput::name): The name that you specified for the Node.
/// - [`node_interface_mappings(Option<Vec::<NodeInterfaceMapping>>)`](crate::operation::describe_node::DescribeNodeOutput::node_interface_mappings): Documentation update needed
/// - [`role(Option<NodeRole>)`](crate::operation::describe_node::DescribeNodeOutput::role): The initial role current role of the Node in the Cluster. ACTIVE means the Node is available for encoding. BACKUP means the Node is a redundant Node and might get used if an ACTIVE Node fails.
/// - [`state(Option<NodeState>)`](crate::operation::describe_node::DescribeNodeOutput::state): The current state of the Node.
/// - On failure, responds with [`SdkError<DescribeNodeError>`](crate::operation::describe_node::DescribeNodeError)
pub fn describe_node(&self) -> crate::operation::describe_node::builders::DescribeNodeFluentBuilder {
crate::operation::describe_node::builders::DescribeNodeFluentBuilder::new(self.handle.clone())
}
}