Class: Aws::SageMaker::Types::DescribeClusterNodeRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::DescribeClusterNodeRequest
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_name ⇒ String
The string name or the Amazon Resource Name (ARN) of the SageMaker HyperPod cluster in which the node is.
-
#node_id ⇒ String
The ID of the SageMaker HyperPod cluster node.
-
#node_logical_id ⇒ String
The logical identifier of the node to describe.
Instance Attribute Details
#cluster_name ⇒ String
The string name or the Amazon Resource Name (ARN) of the SageMaker HyperPod cluster in which the node is.
16045 16046 16047 16048 16049 16050 16051 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 16045 class DescribeClusterNodeRequest < Struct.new( :cluster_name, :node_id, :node_logical_id) SENSITIVE = [] include Aws::Structure end |
#node_id ⇒ String
The ID of the SageMaker HyperPod cluster node.
16045 16046 16047 16048 16049 16050 16051 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 16045 class DescribeClusterNodeRequest < Struct.new( :cluster_name, :node_id, :node_logical_id) SENSITIVE = [] include Aws::Structure end |
#node_logical_id ⇒ String
The logical identifier of the node to describe. You can specify
either NodeLogicalId or InstanceId, but not both.
NodeLogicalId can be used to describe nodes that are still being
provisioned and don't yet have an InstanceId assigned.
16045 16046 16047 16048 16049 16050 16051 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 16045 class DescribeClusterNodeRequest < Struct.new( :cluster_name, :node_id, :node_logical_id) SENSITIVE = [] include Aws::Structure end |