Class: Aws::EMR::Types::AutoScalingPolicyDescription
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::AutoScalingPolicyDescription
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-emr/types.rb
Overview
An automatic scaling policy for a core instance group or task instance group in an Amazon EMR cluster. The automatic scaling policy defines how an instance group dynamically adds and terminates EC2 instances in response to the value of a CloudWatch metric. See PutAutoScalingPolicy.
Instance Attribute Summary collapse
-
#constraints ⇒ Types::ScalingConstraints
The upper and lower EC2 instance limits for an automatic scaling policy.
-
#rules ⇒ Array<Types::ScalingRule>
The scale-in and scale-out rules that comprise the automatic scaling policy.
-
#status ⇒ Types::AutoScalingPolicyStatus
The status of an automatic scaling policy.
Instance Attribute Details
#constraints ⇒ Types::ScalingConstraints
The upper and lower EC2 instance limits for an automatic scaling policy. Automatic scaling activity will not cause an instance group to grow above or below these limits.
463 464 465 466 467 468 |
# File 'lib/aws-sdk-emr/types.rb', line 463 class AutoScalingPolicyDescription < Struct.new( :status, :constraints, :rules) include Aws::Structure end |
#rules ⇒ Array<Types::ScalingRule>
The scale-in and scale-out rules that comprise the automatic scaling policy.
463 464 465 466 467 468 |
# File 'lib/aws-sdk-emr/types.rb', line 463 class AutoScalingPolicyDescription < Struct.new( :status, :constraints, :rules) include Aws::Structure end |
#status ⇒ Types::AutoScalingPolicyStatus
The status of an automatic scaling policy.
463 464 465 466 467 468 |
# File 'lib/aws-sdk-emr/types.rb', line 463 class AutoScalingPolicyDescription < Struct.new( :status, :constraints, :rules) include Aws::Structure end |