Class: Aws::AutoScaling::Types::InstanceRefreshProgressDetails

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#live_pool_progressTypes::InstanceRefreshLivePoolProgress

Reports progress on replacing instances that are in the Auto Scaling group.



3420
3421
3422
3423
3424
3425
# File 'lib/aws-sdk-autoscaling/types.rb', line 3420

class InstanceRefreshProgressDetails < Struct.new(
  :live_pool_progress,
  :warm_pool_progress)
  SENSITIVE = []
  include Aws::Structure
end

#warm_pool_progressTypes::InstanceRefreshWarmPoolProgress

Reports progress on replacing instances that are in the warm pool.



3420
3421
3422
3423
3424
3425
# File 'lib/aws-sdk-autoscaling/types.rb', line 3420

class InstanceRefreshProgressDetails < Struct.new(
  :live_pool_progress,
  :warm_pool_progress)
  SENSITIVE = []
  include Aws::Structure
end