Class: Aws::AutoScaling::Types::InstanceRefreshProgressDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScaling::Types::InstanceRefreshProgressDetails
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-autoscaling/types.rb
Overview
Reports progress on replacing instances in an Auto Scaling group that has a warm pool. This includes separate details for instances in the warm pool and instances in the Auto Scaling group (the live pool).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#live_pool_progress ⇒ Types::InstanceRefreshLivePoolProgress
Reports progress on replacing instances that are in the Auto Scaling group.
-
#warm_pool_progress ⇒ Types::InstanceRefreshWarmPoolProgress
Reports progress on replacing instances that are in the warm pool.
Instance Attribute Details
#live_pool_progress ⇒ Types::InstanceRefreshLivePoolProgress
Reports progress on replacing instances that are in the Auto Scaling group.
3474 3475 3476 3477 3478 3479 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 3474 class InstanceRefreshProgressDetails < Struct.new( :live_pool_progress, :warm_pool_progress) SENSITIVE = [] include Aws::Structure end |
#warm_pool_progress ⇒ Types::InstanceRefreshWarmPoolProgress
Reports progress on replacing instances that are in the warm pool.
3474 3475 3476 3477 3478 3479 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 3474 class InstanceRefreshProgressDetails < Struct.new( :live_pool_progress, :warm_pool_progress) SENSITIVE = [] include Aws::Structure end |