interface OrchestratorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnClusterPropsMixin.OrchestratorProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnClusterPropsMixin_OrchestratorProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnClusterPropsMixin.OrchestratorProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnClusterPropsMixin.OrchestratorProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const orchestratorProperty: sagemaker_mixins.CfnClusterPropsMixin.OrchestratorProperty = {
eks: {
clusterArn: 'clusterArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| eks? | IResolvable | Cluster | The configuration of the Amazon EKS orchestrator cluster for the SageMaker HyperPod cluster. |
eks?
Type:
IResolvable | Cluster
(optional)
The configuration of the Amazon EKS orchestrator cluster for the SageMaker HyperPod cluster.

.NET
Go
Java
Python
TypeScript