interface SlurmConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_pcs.CfnComputeNodeGroup.SlurmConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspcs#CfnComputeNodeGroup_SlurmConfigurationProperty |
Java | software.amazon.awscdk.services.pcs.CfnComputeNodeGroup.SlurmConfigurationProperty |
Python | aws_cdk.aws_pcs.CfnComputeNodeGroup.SlurmConfigurationProperty |
TypeScript | aws-cdk-lib » aws_pcs » CfnComputeNodeGroup » SlurmConfigurationProperty |
Additional options related to the Slurm scheduler.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_pcs as pcs } from 'aws-cdk-lib';
const slurmConfigurationProperty: pcs.CfnComputeNodeGroup.SlurmConfigurationProperty = {
slurmCustomSettings: [{
parameterName: 'parameterName',
parameterValue: 'parameterValue',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| slurm | IResolvable | (IResolvable | Slurm)[] | Additional Slurm-specific configuration that directly maps to Slurm settings. |
slurmCustomSettings?
Type:
IResolvable | (IResolvable | Slurm)[]
(optional)
Additional Slurm-specific configuration that directly maps to Slurm settings.

.NET
Go
Java
Python
TypeScript