Show / Hide Table of Contents

Class CfnComputeNodeGroup.SlurmConfigurationProperty

Additional options related to the Slurm scheduler.

Inheritance
object
CfnComputeNodeGroup.SlurmConfigurationProperty
Implements
CfnComputeNodeGroup.ISlurmConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-computenodegroup-slurmconfiguration.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-computenodegroup-slurmconfiguration.html

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; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-computenodegroup-slurmconfiguration.html#cfn-pcs-computenodegroup-slurmconfiguration-slurmcustomsettings

Type union: either IResolvable or (either IResolvable or CfnComputeNodeGroup.ISlurmCustomSettingProperty)[]

Implements

CfnComputeNodeGroup.ISlurmConfigurationProperty
Back to top Generated by DocFX