interface ClusterSlurmConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnClusterPropsMixin.ClusterSlurmConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnClusterPropsMixin_ClusterSlurmConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnClusterPropsMixin.ClusterSlurmConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnClusterPropsMixin.ClusterSlurmConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnClusterPropsMixin » ClusterSlurmConfigProperty |
Slurm configuration for the instance group.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const clusterSlurmConfigProperty: sagemaker_mixins.CfnClusterPropsMixin.ClusterSlurmConfigProperty = {
nodeType: 'nodeType',
partitionNames: ['partitionNames'],
};
Properties
| Name | Type | Description |
|---|---|---|
| node | string | The type of Slurm node for this instance group. |
| partition | string[] | The Slurm partitions that this instance group belongs to. |
nodeType?
Type:
string
(optional)
The type of Slurm node for this instance group.
partitionNames?
Type:
string[]
(optional)
The Slurm partitions that this instance group belongs to.
Maximum of 1 partition.

.NET
Go
Java
Python
TypeScript