Class: Aws::SageMaker::Types::ScalingPolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ScalingPolicy
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Note:
ScalingPolicy is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ScalingPolicy corresponding to the set member.
An object containing a recommended scaling policy.
Direct Known Subclasses
Defined Under Namespace
Classes: TargetTracking, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#target_tracking ⇒ Types::TargetTrackingScalingPolicyConfiguration
A target tracking scaling policy.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#target_tracking ⇒ Types::TargetTrackingScalingPolicyConfiguration
A target tracking scaling policy. Includes support for predefined or customized metrics.
40188 40189 40190 40191 40192 40193 40194 40195 40196 40197 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 40188 class ScalingPolicy < Struct.new( :target_tracking, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class TargetTracking < ScalingPolicy; end class Unknown < ScalingPolicy; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
40188 40189 40190 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 40188 def unknown @unknown end |