Class CfnClusterPropsMixin.ClusterAutoScalingConfigProperty
Specifies the autoscaling configuration for a HyperPod cluster.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnClusterPropsMixin.ClusterAutoScalingConfigProperty : CfnClusterPropsMixin.IClusterAutoScalingConfigProperty
Syntax (vb)
Public Class CfnClusterPropsMixin.ClusterAutoScalingConfigProperty Implements CfnClusterPropsMixin.IClusterAutoScalingConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins;
var clusterAutoScalingConfigProperty = new ClusterAutoScalingConfigProperty {
AutoScalerType = "autoScalerType",
Mode = "mode"
};
Synopsis
Constructors
| ClusterAutoScalingConfigProperty() | Specifies the autoscaling configuration for a HyperPod cluster. |
Properties
| AutoScalerType | The type of autoscaler to use. |
| Mode | Describes whether autoscaling is enabled or disabled for the cluster. |
Constructors
ClusterAutoScalingConfigProperty()
Specifies the autoscaling configuration for a HyperPod cluster.
public ClusterAutoScalingConfigProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins;
var clusterAutoScalingConfigProperty = new ClusterAutoScalingConfigProperty {
AutoScalerType = "autoScalerType",
Mode = "mode"
};
Properties
AutoScalerType
The type of autoscaler to use.
public string? AutoScalerType { get; set; }
Property Value
Remarks
Currently supported value is Karpenter .
Default: - "Karpenter"
Mode
Describes whether autoscaling is enabled or disabled for the cluster.
public string? Mode { get; set; }