interface ClusterOrchestratorSlurmConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnClusterPropsMixin.ClusterOrchestratorSlurmConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnClusterPropsMixin_ClusterOrchestratorSlurmConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnClusterPropsMixin.ClusterOrchestratorSlurmConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnClusterPropsMixin.ClusterOrchestratorSlurmConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnClusterPropsMixin » 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/cfn-property-mixins';
const clusterOrchestratorSlurmConfigProperty: sagemaker.CfnClusterPropsMixin.ClusterOrchestratorSlurmConfigProperty = {
accountingDatabase: {
endpoint: 'endpoint',
name: 'name',
port: 123,
secretArn: 'secretArn',
},
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