interface OrchestratorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnCluster.OrchestratorProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnCluster_OrchestratorProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnCluster.OrchestratorProperty |
Python | aws_cdk.aws_sagemaker.CfnCluster.OrchestratorProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnCluster » OrchestratorProperty |
The orchestrator for a SageMaker HyperPod cluster.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const orchestratorProperty: sagemaker.CfnCluster.OrchestratorProperty = {
eks: {
clusterArn: 'clusterArn',
},
slurm: {
slurmConfigStrategy: 'slurmConfigStrategy',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| eks? | IResolvable | Cluster | The configuration of the Amazon EKS orchestrator cluster for the SageMaker HyperPod cluster. |
| slurm? | IResolvable | Cluster | Specifies parameter(s) related to Slurm as orchestrator. |
eks?
Type:
IResolvable | Cluster
(optional)
The configuration of the Amazon EKS orchestrator cluster for the SageMaker HyperPod cluster.
slurm?
Type:
IResolvable | Cluster
(optional)
Specifies parameter(s) related to Slurm as orchestrator.

.NET
Go
Java
Python
TypeScript