Class: Aws::EMR::Types::AutoScalingPolicyStateChangeReason
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::AutoScalingPolicyStateChangeReason
- Defined in:
- gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb
Overview
The reason for an AutoScalingPolicyStatus change.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code ⇒ String
The code indicating the reason for the change in status.
USER_REQUEST
indicates that the scaling policy status was changed by a user. -
#message ⇒ String
A friendly, more verbose message that accompanies an automatic scaling policy state change.
Instance Attribute Details
#code ⇒ String
The code indicating the reason for the change in
status.USER_REQUEST
indicates that the scaling policy status was
changed by a user. PROVISION_FAILURE
indicates that the status
change was because the policy failed to provision. CLEANUP_FAILURE
indicates an error.
290 291 292 293 294 295 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 290 class AutoScalingPolicyStateChangeReason < Struct.new( :code, :message) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
A friendly, more verbose message that accompanies an automatic scaling policy state change.
290 291 292 293 294 295 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 290 class AutoScalingPolicyStateChangeReason < Struct.new( :code, :message) SENSITIVE = [] include Aws::Structure end |