interface ClusterOrchestratorSlurmConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnCluster.ClusterOrchestratorSlurmConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnCluster_ClusterOrchestratorSlurmConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnCluster.ClusterOrchestratorSlurmConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnCluster.ClusterOrchestratorSlurmConfigProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnCluster » ClusterOrchestratorSlurmConfigProperty |
Specifies parameter(s) related to Slurm as orchestrator.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const clusterOrchestratorSlurmConfigProperty: sagemaker.CfnCluster.ClusterOrchestratorSlurmConfigProperty = {
accountingDatabase: {
endpoint: 'endpoint',
secretArn: 'secretArn',
// the properties below are optional
name: 'name',
port: 123,
},
slurmConfigStrategy: 'slurmConfigStrategy',
};
Properties
| Name | Type | Description |
|---|---|---|
| accounting | IResolvable | Cluster | External MySQL-compatible accounting database that a Slurm cluster's slurmdbd connects to. |
| slurm | string | The strategy for managing Slurm configuration on the cluster. |
accountingDatabase?
Type:
IResolvable | Cluster
(optional)
External MySQL-compatible accounting database that a Slurm cluster's slurmdbd connects to.
Database credentials are supplied out-of-band through the referenced Secrets Manager secret. Supported only with Continuous node provisioning.
slurmConfigStrategy?
Type:
string
(optional)
The strategy for managing Slurm configuration on the cluster.

.NET
Go
Java
Python
TypeScript