Class: Aws::SageMaker::Types::ClusterSlurmConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ClusterSlurmConfig
- 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
-
#node_type ⇒ String
The type of Slurm node for the instance group.
-
#partition_names ⇒ Array<String>
The list of Slurm partition names that the instance group belongs to.
Instance Attribute Details
#node_type ⇒ String
The type of Slurm node for the instance group. Valid values are Controller, Worker, and Login.
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_names ⇒ Array<String>
The list of Slurm partition names that the instance group belongs to.
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 |