interface OrchestratorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnClusterPropsMixin.OrchestratorProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnClusterPropsMixin_OrchestratorProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnClusterPropsMixin.OrchestratorProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnClusterPropsMixin.OrchestratorProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnClusterPropsMixin » 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/cfn-property-mixins';
const orchestratorProperty: sagemaker.CfnClusterPropsMixin.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