Class: Aws::SageMaker::Types::ClusterSlurmConfig

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

Overview

The Slurm configuration for an instance group in a SageMaker HyperPod cluster.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#node_typeString

The type of Slurm node for the instance group. Valid values are Controller, Worker, and Login.

Returns:

  • (String)


6666
6667
6668
6669
6670
6671
# File 'lib/aws-sdk-sagemaker/types.rb', line 6666

class ClusterSlurmConfig < Struct.new(
  :node_type,
  :partition_names)
  SENSITIVE = []
  include Aws::Structure
end

#partition_namesArray<String>

The list of Slurm partition names that the instance group belongs to.

Returns:

  • (Array<String>)


6666
6667
6668
6669
6670
6671
# File 'lib/aws-sdk-sagemaker/types.rb', line 6666

class ClusterSlurmConfig < Struct.new(
  :node_type,
  :partition_names)
  SENSITIVE = []
  include Aws::Structure
end