interface ClusterAutoScalingConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnCluster.ClusterAutoScalingConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnCluster_ClusterAutoScalingConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnCluster.ClusterAutoScalingConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnCluster.ClusterAutoScalingConfigProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnCluster » 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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const clusterAutoScalingConfigProperty: sagemaker.CfnCluster.ClusterAutoScalingConfigProperty = {
mode: 'mode',
// the properties below are optional
autoScalerType: 'autoScalerType',
};
Properties
| Name | Type | Description |
|---|---|---|
| mode | string | Describes whether autoscaling is enabled or disabled for the cluster. |
| auto | string | The type of autoscaler to use. |
mode
Type:
string
Describes whether autoscaling is enabled or disabled for the cluster.
Valid values are Enable and Disable .
autoScalerType?
Type:
string
(optional, default: "Karpenter")
The type of autoscaler to use.
Currently supported value is Karpenter .

.NET
Go
Java
Python
TypeScript