Class: Aws::SageMaker::Types::BatchReplaceClusterNodeLogicalIdsError

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 (identified by its logical node ID) 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 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.

Returns:

  • (String)


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

#messageString

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

Returns:

  • (String)


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_idString

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

Returns:

  • (String)


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