Class: Aws::SageMaker::Types::ClusterAutoScalingConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ClusterAutoScalingConfig
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Specifies the autoscaling configuration for a HyperPod cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_scaler_type ⇒ String
The type of autoscaler to use.
-
#mode ⇒ String
Describes whether autoscaling is enabled or disabled for the cluster.
Instance Attribute Details
#auto_scaler_type ⇒ String
The type of autoscaler to use. Currently supported value is
Karpenter
.
4717 4718 4719 4720 4721 4722 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 4717 class ClusterAutoScalingConfig < Struct.new( :mode, :auto_scaler_type) SENSITIVE = [] include Aws::Structure end |
#mode ⇒ String
Describes whether autoscaling is enabled or disabled for the
cluster. Valid values are Enable
and Disable
.
4717 4718 4719 4720 4721 4722 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 4717 class ClusterAutoScalingConfig < Struct.new( :mode, :auto_scaler_type) SENSITIVE = [] include Aws::Structure end |