Interface CfnCluster.ClusterOrchestratorSlurmConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCluster.ClusterOrchestratorSlurmConfigProperty.Jsii$Proxy
Enclosing class:
CfnCluster

@Stability(Stable) public static interface CfnCluster.ClusterOrchestratorSlurmConfigProperty extends software.amazon.jsii.JsiiSerializable
Specifies parameter(s) related to Slurm as orchestrator.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.sagemaker.*;
 ClusterOrchestratorSlurmConfigProperty clusterOrchestratorSlurmConfigProperty = ClusterOrchestratorSlurmConfigProperty.builder()
         .accountingDatabase(ClusterAccountingDatabaseProperty.builder()
                 .endpoint("endpoint")
                 .secretArn("secretArn")
                 // the properties below are optional
                 .name("name")
                 .port(123)
                 .build())
         .slurmConfigStrategy("slurmConfigStrategy")
         .build();
 

See Also: