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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


3444
3445
3446
3447
3448
3449
# File 'lib/aws-sdk-autoscaling/types.rb', line 3444

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)


3444
3445
3446
3447
3448
3449
# File 'lib/aws-sdk-autoscaling/types.rb', line 3444

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