Class: Aws::SageMaker::Types::ClusterAutoScalingConfigOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ClusterAutoScalingConfigOutput
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
The autoscaling configuration and status information for a HyperPod cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_scaler_type ⇒ String
The type of autoscaler configured for the cluster.
-
#failure_message ⇒ String
If the autoscaling status is
Failed
, this field contains a message describing the failure. -
#mode ⇒ String
Describes whether autoscaling is enabled or disabled for the cluster.
-
#status ⇒ String
The current status of the autoscaling configuration.
Instance Attribute Details
#auto_scaler_type ⇒ String
The type of autoscaler configured for the cluster.
4748 4749 4750 4751 4752 4753 4754 4755 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 4748 class ClusterAutoScalingConfigOutput < Struct.new( :mode, :auto_scaler_type, :status, :failure_message) SENSITIVE = [] include Aws::Structure end |
#failure_message ⇒ String
If the autoscaling status is Failed
, this field contains a message
describing the failure.
4748 4749 4750 4751 4752 4753 4754 4755 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 4748 class ClusterAutoScalingConfigOutput < Struct.new( :mode, :auto_scaler_type, :status, :failure_message) SENSITIVE = [] include Aws::Structure end |
#mode ⇒ String
Describes whether autoscaling is enabled or disabled for the cluster.
4748 4749 4750 4751 4752 4753 4754 4755 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 4748 class ClusterAutoScalingConfigOutput < Struct.new( :mode, :auto_scaler_type, :status, :failure_message) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The current status of the autoscaling configuration. Valid values
are InService
, Failed
, Creating
, and Deleting
.
4748 4749 4750 4751 4752 4753 4754 4755 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 4748 class ClusterAutoScalingConfigOutput < Struct.new( :mode, :auto_scaler_type, :status, :failure_message) SENSITIVE = [] include Aws::Structure end |