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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCluster.ClusterOrchestratorSlurmConfigPropertystatic final classAn implementation forCfnCluster.ClusterOrchestratorSlurmConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccountingDatabase
External MySQL-compatible accounting database that a Slurm cluster's slurmdbd connects to.Database credentials are supplied out-of-band through the referenced Secrets Manager secret. Supported only with Continuous node provisioning.
Returns union: either
IResolvableorCfnCluster.ClusterAccountingDatabaseProperty- See Also:
-
getSlurmConfigStrategy
The strategy for managing Slurm configuration on the cluster.- See Also:
-
builder
-