Class: Aws::SageMaker::Types::ClusterSlurmConfigDetails

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

Overview

The Slurm configuration details 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)


6688
6689
6690
6691
6692
6693
# File 'lib/aws-sdk-sagemaker/types.rb', line 6688

class ClusterSlurmConfigDetails < 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>)


6688
6689
6690
6691
6692
6693
# File 'lib/aws-sdk-sagemaker/types.rb', line 6688

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