Class: Aws::SageMaker::Types::BatchRebootClusterNodeLogicalIdsError
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::BatchRebootClusterNodeLogicalIdsError
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Represents an error encountered when rebooting a node (identified by its logical node ID) from a SageMaker HyperPod cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error_code ⇒ String
The error code associated with the error encountered when rebooting a node by logical node ID.
-
#message ⇒ String
A human-readable message describing the error encountered when rebooting a node by logical node ID.
-
#node_logical_id ⇒ String
The logical node ID of the node that encountered an error during the reboot operation.
Instance Attribute Details
#error_code ⇒ String
The error code associated with the error encountered when rebooting 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 rebooting. 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.
3567 3568 3569 3570 3571 3572 3573 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3567 class BatchRebootClusterNodeLogicalIdsError < Struct.new( :node_logical_id, :error_code, :message) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
A human-readable message describing the error encountered when rebooting a node by logical node ID.
3567 3568 3569 3570 3571 3572 3573 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3567 class BatchRebootClusterNodeLogicalIdsError < 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 reboot operation.
3567 3568 3569 3570 3571 3572 3573 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3567 class BatchRebootClusterNodeLogicalIdsError < Struct.new( :node_logical_id, :error_code, :message) SENSITIVE = [] include Aws::Structure end |