InstanceRefreshWarmPoolProgress

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

Amazon Web ServicesAuto ScalingComputeEC2High AvailabilityScaling

Properties

Name Type Description
PercentageComplete object
InstancesToUpdate object
View JSON Schema on GitHub

JSON Schema

ec2-auto-scaling-instance-refresh-warm-pool-progress-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ec2-auto-scaling/refs/heads/main/json-schema/ec2-auto-scaling-instance-refresh-warm-pool-progress-schema.json",
  "title": "InstanceRefreshWarmPoolProgress",
  "description": "Reports progress on replacing instances that are in the warm pool.",
  "type": "object",
  "properties": {
    "PercentageComplete": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IntPercent"
        },
        {
          "description": "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."
        }
      ]
    },
    "InstancesToUpdate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InstancesToUpdate"
        },
        {
          "description": "The number of instances remaining to update."
        }
      ]
    }
  }
}