Class: Aws::AutoScaling::Types::DetachInstancesQuery
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScaling::Types::DetachInstancesQuery
- 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 the Auto Scaling group decrements the desired capacity value by the number of instances detached.
Instance Attribute Details
#auto_scaling_group_name ⇒ String
The name of the Auto Scaling group.
2696 2697 2698 2699 2700 2701 2702 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 2696 class DetachInstancesQuery < 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.
2696 2697 2698 2699 2700 2701 2702 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 2696 class DetachInstancesQuery < Struct.new( :instance_ids, :auto_scaling_group_name, :should_decrement_desired_capacity) SENSITIVE = [] include Aws::Structure end |
#should_decrement_desired_capacity ⇒ Boolean
Indicates whether the Auto Scaling group decrements the desired capacity value by the number of instances detached.
2696 2697 2698 2699 2700 2701 2702 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 2696 class DetachInstancesQuery < Struct.new( :instance_ids, :auto_scaling_group_name, :should_decrement_desired_capacity) SENSITIVE = [] include Aws::Structure end |