Class: Aws::AutoScaling::Types::InstanceRefreshWarmPoolProgress
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScaling::Types::InstanceRefreshWarmPoolProgress
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-autoscaling/types.rb
Overview
Reports progress on replacing instances that are in the warm pool.
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 warm pool that have been replaced.
Instance Attribute Details
#instances_to_update ⇒ Integer
The number of instances remaining to update.
3498 3499 3500 3501 3502 3503 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 3498 class InstanceRefreshWarmPoolProgress < Struct.new( :percentage_complete, :instances_to_update) SENSITIVE = [] include Aws::Structure end |
#percentage_complete ⇒ Integer
The percentage of instances in the warm pool 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.
3498 3499 3500 3501 3502 3503 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 3498 class InstanceRefreshWarmPoolProgress < Struct.new( :percentage_complete, :instances_to_update) SENSITIVE = [] include Aws::Structure end |