aws_sdk_sagemaker/client/
describe_cluster_node.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 [`DescribeClusterNode`](crate::operation::describe_cluster_node::builders::DescribeClusterNodeFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`cluster_name(impl Into<String>)`](crate::operation::describe_cluster_node::builders::DescribeClusterNodeFluentBuilder::cluster_name) / [`set_cluster_name(Option<String>)`](crate::operation::describe_cluster_node::builders::DescribeClusterNodeFluentBuilder::set_cluster_name):<br>required: **true**<br><p>The string name or the Amazon Resource Name (ARN) of the SageMaker HyperPod cluster in which the node is.</p><br>
7    ///   - [`node_id(impl Into<String>)`](crate::operation::describe_cluster_node::builders::DescribeClusterNodeFluentBuilder::node_id) / [`set_node_id(Option<String>)`](crate::operation::describe_cluster_node::builders::DescribeClusterNodeFluentBuilder::set_node_id):<br>required: **true**<br><p>The ID of the SageMaker HyperPod cluster node.</p><br>
8    /// - On success, responds with [`DescribeClusterNodeOutput`](crate::operation::describe_cluster_node::DescribeClusterNodeOutput) with field(s):
9    ///   - [`node_details(Option<ClusterNodeDetails>)`](crate::operation::describe_cluster_node::DescribeClusterNodeOutput::node_details): <p>The details of the SageMaker HyperPod cluster node.</p>
10    /// - On failure, responds with [`SdkError<DescribeClusterNodeError>`](crate::operation::describe_cluster_node::DescribeClusterNodeError)
11    pub fn describe_cluster_node(&self) -> crate::operation::describe_cluster_node::builders::DescribeClusterNodeFluentBuilder {
12        crate::operation::describe_cluster_node::builders::DescribeClusterNodeFluentBuilder::new(self.handle.clone())
13    }
14}