Class: Aws::AutoScaling::Types::ScalingProcessQuery

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

Overview

Note:

When making an API call, you may pass ScalingProcessQuery data as a hash:

{
  auto_scaling_group_name: "ResourceName", # required
  scaling_processes: ["XmlStringMaxLen255"],
}

Instance Attribute Summary collapse

Instance Attribute Details

#auto_scaling_group_nameString

The name of the Auto Scaling group.

Returns:

  • (String)


4028
4029
4030
4031
4032
# File 'lib/aws-sdk-autoscaling/types.rb', line 4028

class ScalingProcessQuery < Struct.new(
  :auto_scaling_group_name,
  :scaling_processes)
  include Aws::Structure
end

#scaling_processesArray<String>

One or more of the following processes. If you omit this parameter, all processes are specified.

  • ‘Launch`

  • ‘Terminate`

  • ‘HealthCheck`

  • ‘ReplaceUnhealthy`

  • ‘AZRebalance`

  • ‘AlarmNotification`

  • ‘ScheduledActions`

  • ‘AddToLoadBalancer`

Returns:

  • (Array<String>)


4028
4029
4030
4031
4032
# File 'lib/aws-sdk-autoscaling/types.rb', line 4028

class ScalingProcessQuery < Struct.new(
  :auto_scaling_group_name,
  :scaling_processes)
  include Aws::Structure
end