Class: Aws::AutoScaling::Types::EnterStandbyQuery
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScaling::Types::EnterStandbyQuery
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-autoscaling/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_scaling_group_name ⇒ String
The name of the Auto Scaling group.
-
#instance_ids ⇒ Array<String>
The IDs of the instances.
-
#should_decrement_desired_capacity ⇒ Boolean
Indicates whether to decrement the desired capacity of the Auto Scaling group by the number of instances moved to ‘Standby` mode.
Instance Attribute Details
#auto_scaling_group_name ⇒ String
The name of the Auto Scaling group.
2879 2880 2881 2882 2883 2884 2885 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 2879 class EnterStandbyQuery < Struct.new( :instance_ids, :auto_scaling_group_name, :should_decrement_desired_capacity) SENSITIVE = [] include Aws::Structure end |
#instance_ids ⇒ Array<String>
The IDs of the instances. You can specify up to 20 instances.
2879 2880 2881 2882 2883 2884 2885 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 2879 class EnterStandbyQuery < Struct.new( :instance_ids, :auto_scaling_group_name, :should_decrement_desired_capacity) SENSITIVE = [] include Aws::Structure end |
#should_decrement_desired_capacity ⇒ Boolean
Indicates whether to decrement the desired capacity of the Auto Scaling group by the number of instances moved to ‘Standby` mode.
2879 2880 2881 2882 2883 2884 2885 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 2879 class EnterStandbyQuery < Struct.new( :instance_ids, :auto_scaling_group_name, :should_decrement_desired_capacity) SENSITIVE = [] include Aws::Structure end |