Class: Aws::SageMaker::Types::BatchDeleteClusterNodesRequest

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cluster_nameString

The name of the SageMaker HyperPod cluster from which to delete the specified nodes.

Returns:

  • (String)


3008
3009
3010
3011
3012
3013
# File 'lib/aws-sdk-sagemaker/types.rb', line 3008

class BatchDeleteClusterNodesRequest < Struct.new(
  :cluster_name,
  :node_ids)
  SENSITIVE = []
  include Aws::Structure
end

#node_idsArray<String>

A list of node IDs to be deleted from the specified cluster.

<note markdown=“1”> * For SageMaker HyperPod clusters using the Slurm workload manager,

you cannot remove instances that are configured as Slurm
controller nodes.
  • If you need to delete more than 99 instances, contact [Support] for assistance.

</note>

[1]: aws.amazon.com/contact-us/

Returns:

  • (Array<String>)


3008
3009
3010
3011
3012
3013
# File 'lib/aws-sdk-sagemaker/types.rb', line 3008

class BatchDeleteClusterNodesRequest < Struct.new(
  :cluster_name,
  :node_ids)
  SENSITIVE = []
  include Aws::Structure
end