Class: Aws::AutoScaling::Types::SuspendedProcess

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

Overview

Describes an auto scaling process that has been suspended.

For more information, see [Scaling processes] in the *Amazon EC2 Auto Scaling User Guide*.

[1]: docs.aws.amazon.com/autoscaling/ec2/userguide/as-suspend-resume-processes.html#process-types

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#process_nameString

The name of the suspended process.

Returns:

  • (String)


7181
7182
7183
7184
7185
7186
# File 'lib/aws-sdk-autoscaling/types.rb', line 7181

class SuspendedProcess < Struct.new(
  :process_name,
  :suspension_reason)
  SENSITIVE = []
  include Aws::Structure
end

#suspension_reasonString

The reason that the process was suspended.

Returns:

  • (String)


7181
7182
7183
7184
7185
7186
# File 'lib/aws-sdk-autoscaling/types.rb', line 7181

class SuspendedProcess < Struct.new(
  :process_name,
  :suspension_reason)
  SENSITIVE = []
  include Aws::Structure
end