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.
4739 4740 4741 4742 4743 4744 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 4739 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.
4739 4740 4741 4742 4743 4744 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 4739 class ClusterAutoScalingConfig < Struct.new( :mode, :auto_scaler_type) SENSITIVE = [] include Aws::Structure end |