interface ClusterAutoScalingConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnClusterPropsMixin.ClusterAutoScalingConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnClusterPropsMixin_ClusterAutoScalingConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnClusterPropsMixin.ClusterAutoScalingConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnClusterPropsMixin.ClusterAutoScalingConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnClusterPropsMixin » ClusterAutoScalingConfigProperty |
Specifies the autoscaling configuration for a 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 clusterAutoScalingConfigProperty: sagemaker_mixins.CfnClusterPropsMixin.ClusterAutoScalingConfigProperty = {
autoScalerType: 'autoScalerType',
mode: 'mode',
};
Properties
| Name | Type | Description |
|---|---|---|
| auto | string | The type of autoscaler to use. |
| mode? | string | Describes whether autoscaling is enabled or disabled for the cluster. |
autoScalerType?
Type:
string
(optional, default: "Karpenter")
The type of autoscaler to use.
Currently supported value is Karpenter .
mode?
Type:
string
(optional)
Describes whether autoscaling is enabled or disabled for the cluster.
Valid values are Enable and Disable .

.NET
Go
Java
Python
TypeScript