Class: Aws::AutoScaling::Types::InstanceRefreshProgressDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScaling::Types::InstanceRefreshProgressDetails
- Defined in:
- gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb
Overview
Reports the progress of an instance refresh on 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
Indicates the progress of an instance refresh on instances that are in the Auto Scaling group.
-
#warm_pool_progress ⇒ Types::InstanceRefreshWarmPoolProgress
Indicates the progress of an instance refresh on instances that are in the warm pool.
Instance Attribute Details
#live_pool_progress ⇒ Types::InstanceRefreshLivePoolProgress
Indicates the progress of an instance refresh on instances that are in the Auto Scaling group.
3976 3977 3978 3979 3980 3981 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 3976 class InstanceRefreshProgressDetails < Struct.new( :live_pool_progress, :warm_pool_progress) SENSITIVE = [] include Aws::Structure end |
#warm_pool_progress ⇒ Types::InstanceRefreshWarmPoolProgress
Indicates the progress of an instance refresh on instances that are in the warm pool.
3976 3977 3978 3979 3980 3981 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 3976 class InstanceRefreshProgressDetails < Struct.new( :live_pool_progress, :warm_pool_progress) SENSITIVE = [] include Aws::Structure end |