Class: Aws::EMR::Types::AutoScalingPolicyStateChangeReason

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-emr/types.rb

Overview

The reason for an AutoScalingPolicyStatus change.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#codeString

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.

Returns:

  • (String)


290
291
292
293
294
295
# File 'lib/aws-sdk-emr/types.rb', line 290

class AutoScalingPolicyStateChangeReason < Struct.new(
  :code,
  :message)
  SENSITIVE = []
  include Aws::Structure
end

#messageString

A friendly, more verbose message that accompanies an automatic scaling policy state change.

Returns:

  • (String)


290
291
292
293
294
295
# File 'lib/aws-sdk-emr/types.rb', line 290

class AutoScalingPolicyStateChangeReason < Struct.new(
  :code,
  :message)
  SENSITIVE = []
  include Aws::Structure
end