interface SlurmConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.PCS.CfnComputeNodeGroupPropsMixin.SlurmConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspcs#CfnComputeNodeGroupPropsMixin_SlurmConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.pcs.CfnComputeNodeGroupPropsMixin.SlurmConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_pcs.CfnComputeNodeGroupPropsMixin.SlurmConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pcs » CfnComputeNodeGroupPropsMixin » 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/cfn-property-mixins';
const slurmConfigurationProperty: pcs.CfnComputeNodeGroupPropsMixin.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