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 {
ScaleDownIdleTimeInSeconds = 123,
SlurmCustomSettings = new [] { new SlurmCustomSettingProperty {
ParameterName = "parameterName",
ParameterValue = "parameterValue"
} }
};
Synopsis
Constructors
| SlurmConfigurationProperty() | Additional options related to the Slurm scheduler. |
Properties
| ScaleDownIdleTimeInSeconds | The time before an idle node is scaled down. |
| 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 {
ScaleDownIdleTimeInSeconds = 123,
SlurmCustomSettings = new [] { new SlurmCustomSettingProperty {
ParameterName = "parameterName",
ParameterValue = "parameterValue"
} }
};
Properties
ScaleDownIdleTimeInSeconds
The time before an idle node is scaled down.
public double? ScaleDownIdleTimeInSeconds { get; set; }
Property Value
Remarks
SlurmCustomSettings
Additional Slurm-specific configuration that directly maps to Slurm settings.
public object? SlurmCustomSettings { get; set; }