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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-autoscaling/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.



3477
3478
3479
3480
3481
3482
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 3477

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.



3477
3478
3479
3480
3481
3482
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 3477

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