Class: Aws::AutoScaling::Types::InstanceRefreshLivePoolProgress

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 Auto Scaling group.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#instances_to_updateInteger

The number of instances remaining to update.

Returns:

  • (Integer)


3455
3456
3457
3458
3459
3460
# File 'lib/aws-sdk-autoscaling/types.rb', line 3455

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

#percentage_completeInteger

The percentage of instances in the Auto Scaling group 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)


3455
3456
3457
3458
3459
3460
# File 'lib/aws-sdk-autoscaling/types.rb', line 3455

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