InstanceRefreshProgressDetails

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).

Amazon Web ServicesAuto-ScalingComputeEC2High AvailabilityScaling

Properties

Name Type Description
LivePoolProgress object
WarmPoolProgress object
View JSON Schema on GitHub

JSON Schema

ec2-auto-scaling-instance-refresh-progress-details-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-progress-details-schema.json",
  "title": "InstanceRefreshProgressDetails",
  "description": "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).",
  "type": "object",
  "properties": {
    "LivePoolProgress": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InstanceRefreshLivePoolProgress"
        },
        {
          "description": "Reports progress on replacing instances that are in the Auto Scaling group."
        }
      ]
    },
    "WarmPoolProgress": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InstanceRefreshWarmPoolProgress"
        },
        {
          "description": "Reports progress on replacing instances that are in the warm pool."
        }
      ]
    }
  }
}