Class: Aws::SageMaker::Types::NodeAdditionResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::NodeAdditionResult
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Information about a node that was successfully added to the cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#instance_group_name ⇒ String
The name of the instance group to which the node was added.
-
#node_logical_id ⇒ String
A unique identifier assigned to the node that can be used to track its provisioning status through the
DescribeClusterNodeoperation. -
#status ⇒ String
The current status of the node.
Instance Attribute Details
#instance_group_name ⇒ String
The name of the instance group to which the node was added.
40471 40472 40473 40474 40475 40476 40477 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 40471 class NodeAdditionResult < Struct.new( :node_logical_id, :instance_group_name, :status) SENSITIVE = [] include Aws::Structure end |
#node_logical_id ⇒ String
A unique identifier assigned to the node that can be used to track its provisioning status through the DescribeClusterNode operation.
40471 40472 40473 40474 40475 40476 40477 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 40471 class NodeAdditionResult < Struct.new( :node_logical_id, :instance_group_name, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The current status of the node. Possible values include Pending, Running, Failed, ShuttingDown, SystemUpdating, DeepHealthCheckInProgress, and NotFound.
40471 40472 40473 40474 40475 40476 40477 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 40471 class NodeAdditionResult < Struct.new( :node_logical_id, :instance_group_name, :status) SENSITIVE = [] include Aws::Structure end |