Class: Aws::AutoScaling::Types::SetDesiredCapacityType

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#auto_scaling_group_nameString

The name of the Auto Scaling group.

Returns:

  • (String)


6949
6950
6951
6952
6953
6954
6955
# File 'lib/aws-sdk-autoscaling/types.rb', line 6949

class SetDesiredCapacityType < Struct.new(
  :auto_scaling_group_name,
  :desired_capacity,
  :honor_cooldown)
  SENSITIVE = []
  include Aws::Structure
end

#desired_capacityInteger

The desired capacity is the initial capacity of the Auto Scaling group after this operation completes and the capacity it attempts to maintain.

Returns:

  • (Integer)


6949
6950
6951
6952
6953
6954
6955
# File 'lib/aws-sdk-autoscaling/types.rb', line 6949

class SetDesiredCapacityType < Struct.new(
  :auto_scaling_group_name,
  :desired_capacity,
  :honor_cooldown)
  SENSITIVE = []
  include Aws::Structure
end

#honor_cooldownBoolean

Indicates whether Amazon EC2 Auto Scaling waits for the cooldown period to complete before initiating a scaling activity to set your Auto Scaling group to its new capacity. By default, Amazon EC2 Auto Scaling does not honor the cooldown period during manual scaling activities.

Returns:

  • (Boolean)


6949
6950
6951
6952
6953
6954
6955
# File 'lib/aws-sdk-autoscaling/types.rb', line 6949

class SetDesiredCapacityType < Struct.new(
  :auto_scaling_group_name,
  :desired_capacity,
  :honor_cooldown)
  SENSITIVE = []
  include Aws::Structure
end