Class: Aws::SageMaker::Types::BatchReplaceClusterNodeLogicalIdsError
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::BatchReplaceClusterNodeLogicalIdsError
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Represents an error encountered when replacing a node (identified by its logical node ID) in a SageMaker HyperPod cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error_code ⇒ String
The error code associated with the error encountered when replacing a node by logical node ID.
-
#message ⇒ String
A human-readable message describing the error encountered when replacing a node by logical node ID.
-
#node_logical_id ⇒ String
The logical node ID of the node that encountered an error during the replacement operation.
Instance Attribute Details
#error_code ⇒ String
The error code associated with the error encountered when replacing a node by logical node ID.
Possible values:
InstanceIdNotFound: The node does not exist in the specified cluster.InvalidInstanceStatus: The node is in a state that does not allow replacement. Wait for the node to finish any ongoing changes before retrying.InstanceIdInUse: Another operation is already in progress for this node. Wait for the operation to complete before retrying.InternalServerError: An internal error occurred while processing this node.
3732 3733 3734 3735 3736 3737 3738 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3732 class BatchReplaceClusterNodeLogicalIdsError < Struct.new( :node_logical_id, :error_code, :message) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
A human-readable message describing the error encountered when replacing a node by logical node ID.
3732 3733 3734 3735 3736 3737 3738 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3732 class BatchReplaceClusterNodeLogicalIdsError < Struct.new( :node_logical_id, :error_code, :message) SENSITIVE = [] include Aws::Structure end |
#node_logical_id ⇒ String
The logical node ID of the node that encountered an error during the replacement operation.
3732 3733 3734 3735 3736 3737 3738 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3732 class BatchReplaceClusterNodeLogicalIdsError < Struct.new( :node_logical_id, :error_code, :message) SENSITIVE = [] include Aws::Structure end |