Class: Aws::SageMaker::Types::BatchReplaceClusterNodesError
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::BatchReplaceClusterNodesError
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Represents an error encountered when replacing a node 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.
-
#message ⇒ String
A human-readable message describing the error encountered when replacing a node.
-
#node_id ⇒ String
The EC2 instance 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.
Possible values:
InstanceIdNotFound: The instance does not exist in the specified cluster.InvalidInstanceStatus: The instance is in a state that does not allow replacement. Wait for the instance 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.
3775 3776 3777 3778 3779 3780 3781 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3775 class BatchReplaceClusterNodesError < Struct.new( :node_id, :error_code, :message) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
A human-readable message describing the error encountered when replacing a node.
3775 3776 3777 3778 3779 3780 3781 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3775 class BatchReplaceClusterNodesError < Struct.new( :node_id, :error_code, :message) SENSITIVE = [] include Aws::Structure end |
#node_id ⇒ String
The EC2 instance ID of the node that encountered an error during the replacement operation.
3775 3776 3777 3778 3779 3780 3781 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3775 class BatchReplaceClusterNodesError < Struct.new( :node_id, :error_code, :message) SENSITIVE = [] include Aws::Structure end |