interface SlurmCustomSettingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.PCS.CfnQueuePropsMixin.SlurmCustomSettingProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspcs#CfnQueuePropsMixin_SlurmCustomSettingProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.pcs.CfnQueuePropsMixin.SlurmCustomSettingProperty |
Python | aws_cdk.cfn_property_mixins.aws_pcs.CfnQueuePropsMixin.SlurmCustomSettingProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pcs » CfnQueuePropsMixin » SlurmCustomSettingProperty |
Additional settings that directly map to Slurm settings.
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 slurmCustomSettingProperty: pcs.CfnQueuePropsMixin.SlurmCustomSettingProperty = {
parameterName: 'parameterName',
parameterValue: 'parameterValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| parameter | string | AWS PCS supports configuration of the Slurm parameters for queues:. |
| parameter | string | The value for the configured Slurm setting. |
parameterName?
Type:
string
(optional)
AWS PCS supports configuration of the Slurm parameters for queues:.
parameterValue?
Type:
string
(optional)
The value for the configured Slurm setting.

.NET
Go
Java
Python
TypeScript