Class: Aws::SageMaker::Types::ClusterSlurmConfigDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ClusterSlurmConfigDetails
- Defined in:
- gems/aws-sdk-sagemaker/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
-
#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.
6802 6803 6804 6805 6806 6807 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 6802 class ClusterSlurmConfigDetails < 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.
6802 6803 6804 6805 6806 6807 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 6802 class ClusterSlurmConfigDetails < Struct.new( :node_type, :partition_names) SENSITIVE = [] include Aws::Structure end |