Class: Aws::SageMaker::Types::BatchReplaceClusterNodesError

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#error_codeString

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.

Returns:

  • (String)


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

#messageString

A human-readable message describing the error encountered when replacing a node.

Returns:

  • (String)


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_idString

The EC2 instance ID of the node that encountered an error during the replacement operation.

Returns:

  • (String)


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