interface SlurmCustomSettingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.PCS.Mixins.CfnQueuePropsMixin.SlurmCustomSettingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspcs/mixins#CfnQueuePropsMixin_SlurmCustomSettingProperty |
Java | software.amazon.awscdk.mixins.preview.services.pcs.mixins.CfnQueuePropsMixin.SlurmCustomSettingProperty |
Python | aws_cdk.mixins_preview.aws_pcs.mixins.CfnQueuePropsMixin.SlurmCustomSettingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pcs » mixins » 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 { mixins as pcs_mixins } from '@aws-cdk/mixins-preview/aws-pcs';
const slurmCustomSettingProperty: pcs_mixins.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