Class: Aws::SageMaker::Types::BatchDeleteClusterNodeLogicalIdsError
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::BatchDeleteClusterNodeLogicalIdsError
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Information about an error that occurred when attempting to delete a
node identified by its NodeLogicalId
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code ⇒ String
The error code associated with the failure.
-
#message ⇒ String
A descriptive message providing additional details about the error.
-
#node_logical_id ⇒ String
The
NodeLogicalId
of the node that could not be deleted.
Instance Attribute Details
#code ⇒ String
The error code associated with the failure. Possible values include
NodeLogicalIdNotFound
, InvalidNodeStatus
, and InternalError
.
3228 3229 3230 3231 3232 3233 3234 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3228 class BatchDeleteClusterNodeLogicalIdsError < Struct.new( :code, :message, :node_logical_id) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
A descriptive message providing additional details about the error.
3228 3229 3230 3231 3232 3233 3234 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3228 class BatchDeleteClusterNodeLogicalIdsError < Struct.new( :code, :message, :node_logical_id) SENSITIVE = [] include Aws::Structure end |
#node_logical_id ⇒ String
The NodeLogicalId
of the node that could not be deleted.
3228 3229 3230 3231 3232 3233 3234 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3228 class BatchDeleteClusterNodeLogicalIdsError < Struct.new( :code, :message, :node_logical_id) SENSITIVE = [] include Aws::Structure end |