Class: Aws::AutoScaling::Types::InstanceRefreshWarmPoolProgress

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

Instance Attribute Details

#instances_to_updateInteger

The number of instances remaining to update.

Returns:

  • (Integer)


3501
3502
3503
3504
3505
3506
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 3501

class InstanceRefreshWarmPoolProgress < Struct.new(
  :percentage_complete,
  :instances_to_update)
  SENSITIVE = []
  include Aws::Structure
end

#percentage_completeInteger

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.

Returns:

  • (Integer)


3501
3502
3503
3504
3505
3506
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 3501

class InstanceRefreshWarmPoolProgress < Struct.new(
  :percentage_complete,
  :instances_to_update)
  SENSITIVE = []
  include Aws::Structure
end