Class: Aws::SageMaker::Types::BatchRebootClusterNodesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::BatchRebootClusterNodesRequest
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_name ⇒ String
The name or Amazon Resource Name (ARN) of the SageMaker HyperPod cluster containing the nodes to reboot.
-
#node_ids ⇒ Array<String>
A list of EC2 instance IDs to reboot using soft recovery.
-
#node_logical_ids ⇒ Array<String>
A list of logical node IDs to reboot using soft recovery.
Instance Attribute Details
#cluster_name ⇒ String
The name or Amazon Resource Name (ARN) of the SageMaker HyperPod cluster containing the nodes to reboot.
3654 3655 3656 3657 3658 3659 3660 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3654 class BatchRebootClusterNodesRequest < Struct.new( :cluster_name, :node_ids, :node_logical_ids) SENSITIVE = [] include Aws::Structure end |
#node_ids ⇒ Array<String>
A list of EC2 instance IDs to reboot using soft recovery. You can specify between 1 and 25 instance IDs.
NodeIds or NodeLogicalIds must be provided (or both),
but at least one is required.
- Each instance ID must follow the pattern
i-followed by 17 hexadecimal characters (for example,i-0123456789abcdef0).
3654 3655 3656 3657 3658 3659 3660 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3654 class BatchRebootClusterNodesRequest < Struct.new( :cluster_name, :node_ids, :node_logical_ids) SENSITIVE = [] include Aws::Structure end |
#node_logical_ids ⇒ Array<String>
A list of logical node IDs to reboot using soft recovery. You can specify between 1 and 25 logical node IDs.
The NodeLogicalId is a unique identifier that persists throughout
the node's lifecycle and can be used to track nodes that are still
being provisioned and don't yet have an EC2 instance ID assigned.
This parameter is only supported for clusters using
Continuousas theNodeProvisioningMode. For clusters using the default provisioning mode, useNodeIdsinstead.Either
NodeIdsorNodeLogicalIdsmust be provided (or both), but at least one is required.
3654 3655 3656 3657 3658 3659 3660 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3654 class BatchRebootClusterNodesRequest < Struct.new( :cluster_name, :node_ids, :node_logical_ids) SENSITIVE = [] include Aws::Structure end |