Class: Aws::AutoScaling::Types::InstanceRefreshLivePoolProgress
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScaling::Types::InstanceRefreshLivePoolProgress
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-autoscaling/types.rb
Overview
Reports progress on replacing instances that are in the Auto Scaling group.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#instances_to_update ⇒ Integer
The number of instances remaining to update.
-
#percentage_complete ⇒ Integer
The percentage of instances in the Auto Scaling group that have been replaced.
Instance Attribute Details
#instances_to_update ⇒ Integer
The number of instances remaining to update.
3452 3453 3454 3455 3456 3457 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 3452 class InstanceRefreshLivePoolProgress < Struct.new( :percentage_complete, :instances_to_update) SENSITIVE = [] include Aws::Structure end |
#percentage_complete ⇒ Integer
The percentage of instances in the Auto Scaling group that have been replaced. For each instance replacement, Amazon EC2 Auto Scaling tracks the instance’s health status and warm-up time. When the instance’s health status changes to healthy and the specified warm-up time passes, the instance is considered updated and is added to the percentage complete.
3452 3453 3454 3455 3456 3457 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 3452 class InstanceRefreshLivePoolProgress < Struct.new( :percentage_complete, :instances_to_update) SENSITIVE = [] include Aws::Structure end |