Class CfnComputeNodeGroup.SlurmConfigurationProperty
Additional options related to the Slurm scheduler.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.PCS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnComputeNodeGroup.SlurmConfigurationProperty : CfnComputeNodeGroup.ISlurmConfigurationProperty
Syntax (vb)
Public Class CfnComputeNodeGroup.SlurmConfigurationProperty Implements CfnComputeNodeGroup.ISlurmConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.PCS;
var slurmConfigurationProperty = new SlurmConfigurationProperty {
SlurmCustomSettings = new [] { new SlurmCustomSettingProperty {
ParameterName = "parameterName",
ParameterValue = "parameterValue"
} }
};
Synopsis
Constructors
| SlurmConfigurationProperty() | Additional options related to the Slurm scheduler. |
Properties
| SlurmCustomSettings | Additional Slurm-specific configuration that directly maps to Slurm settings. |
Constructors
SlurmConfigurationProperty()
Additional options related to the Slurm scheduler.
public SlurmConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.PCS;
var slurmConfigurationProperty = new SlurmConfigurationProperty {
SlurmCustomSettings = new [] { new SlurmCustomSettingProperty {
ParameterName = "parameterName",
ParameterValue = "parameterValue"
} }
};
Properties
SlurmCustomSettings
Additional Slurm-specific configuration that directly maps to Slurm settings.
public object? SlurmCustomSettings { get; set; }