Amazon EC2 Auto Scaling · JSON Structure

Ec2 Auto Scaling Instance Refresh Progress Details Structure

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: 2
Amazon Web ServicesAuto ScalingComputeEC2High AvailabilityScaling

InstanceRefreshProgressDetails is a JSON Structure definition published by Amazon EC2 Auto Scaling, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

LivePoolProgress WarmPoolProgress

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ec2-auto-scaling/refs/heads/main/json-structure/ec2-auto-scaling-instance-refresh-progress-details-structure.json",
  "name": "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."
        }
      ]
    }
  }
}