interface SlurmdbdCustomSettingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.PCS.CfnCluster.SlurmdbdCustomSettingProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspcs#CfnCluster_SlurmdbdCustomSettingProperty |
Java | software.amazon.awscdk.services.pcs.CfnCluster.SlurmdbdCustomSettingProperty |
Python | aws_cdk.aws_pcs.CfnCluster.SlurmdbdCustomSettingProperty |
TypeScript | aws-cdk-lib » aws_pcs » CfnCluster » SlurmdbdCustomSettingProperty |
Additional slurmdbd configuration 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-lib';
const slurmdbdCustomSettingProperty: pcs.CfnCluster.SlurmdbdCustomSettingProperty = {
parameterName: 'parameterName',
parameterValue: 'parameterValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| parameter | string | The slurmdbd.conf parameter name. |
| parameter | string | The value for the slurmdbd.conf parameter. |
parameterName
Type:
string
The slurmdbd.conf parameter name.
parameterValue
Type:
string
The value for the slurmdbd.conf parameter.

.NET
Go
Java
Python
TypeScript