interface SlurmRestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.PCS.CfnClusterPropsMixin.SlurmRestProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspcs#CfnClusterPropsMixin_SlurmRestProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.pcs.CfnClusterPropsMixin.SlurmRestProperty |
Python | aws_cdk.cfn_property_mixins.aws_pcs.CfnClusterPropsMixin.SlurmRestProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pcs » CfnClusterPropsMixin » SlurmRestProperty |
The Slurm REST API configuration includes settings for enabling and configuring the Slurm REST API.
It's a property of the ClusterSlurmConfiguration object.
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/cfn-property-mixins';
const slurmRestProperty: pcs.CfnClusterPropsMixin.SlurmRestProperty = {
mode: 'mode',
};
Properties
| Name | Type | Description |
|---|---|---|
| mode? | string | The default value for mode is NONE . |
mode?
Type:
string
(optional, default: "NONE")
The default value for mode is NONE .
A value of STANDARD means the Slurm REST API is enabled.

.NET
Go
Java
Python
TypeScript