Interface CfnCluster.ClusterAutoScalingConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCluster.ClusterAutoScalingConfigProperty.Jsii$Proxy
- Enclosing class:
CfnCluster
@Stability(Stable)
public static interface CfnCluster.ClusterAutoScalingConfigProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.sagemaker.*; ClusterAutoScalingConfigProperty clusterAutoScalingConfigProperty = ClusterAutoScalingConfigProperty.builder() .mode("mode") // the properties below are optional .autoScalerType("autoScalerType") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCluster.ClusterAutoScalingConfigProperty
static final class
An implementation forCfnCluster.ClusterAutoScalingConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMode
Describes whether autoscaling is enabled or disabled for the cluster.Valid values are
Enable
andDisable
.- See Also:
-
getAutoScalerType
The type of autoscaler to use.Currently supported value is
Karpenter
.Default: - "Karpenter"
- See Also:
-
builder
-