{ "$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-auto-scaling-instance-details-structure.json", "name": "AutoScalingInstanceDetails", "description": "Describes an EC2 instance associated with an Auto Scaling group.", "type": "object", "properties": { "InstanceId": { "allOf": [ { "$ref": "#/components/schemas/XmlStringMaxLen19" }, { "description": "The ID of the instance." } ] }, "InstanceType": { "allOf": [ { "$ref": "#/components/schemas/XmlStringMaxLen255" }, { "description": "The instance type of the EC2 instance." } ] }, "AutoScalingGroupName": { "allOf": [ { "$ref": "#/components/schemas/XmlStringMaxLen255" }, { "description": "The name of the Auto Scaling group for the instance." } ] }, "AvailabilityZone": { "allOf": [ { "$ref": "#/components/schemas/XmlStringMaxLen255" }, { "description": "The Availability Zone for the instance." } ] }, "LifecycleState": { "allOf": [ { "$ref": "#/components/schemas/XmlStringMaxLen32" }, { "description": "

The lifecycle state for the instance. The Quarantined state is not used. For information about lifecycle states, see Instance lifecycle in the Amazon EC2 Auto Scaling User Guide.

Valid values: Pending | Pending:Wait | Pending:Proceed | Quarantined | InService | Terminating | Terminating:Wait | Terminating:Proceed | Terminated | Detaching | Detached | EnteringStandby | Standby | Warmed:Pending | Warmed:Pending:Wait | Warmed:Pending:Proceed | Warmed:Terminating | Warmed:Terminating:Wait | Warmed:Terminating:Proceed | Warmed:Terminated | Warmed:Stopped | Warmed:Running

" } ] }, "HealthStatus": { "allOf": [ { "$ref": "#/components/schemas/XmlStringMaxLen32" }, { "description": "The last reported health status of this instance. Healthy means that the instance is healthy and should remain in service. Unhealthy means that the instance is unhealthy and Amazon EC2 Auto Scaling should terminate and replace it." } ] }, "LaunchConfigurationName": { "allOf": [ { "$ref": "#/components/schemas/XmlStringMaxLen255" }, { "description": "The launch configuration used to launch the instance. This value is not available if you attached the instance to the Auto Scaling group." } ] }, "LaunchTemplate": { "allOf": [ { "$ref": "#/components/schemas/LaunchTemplateSpecification" }, { "description": "The launch template for the instance." } ] }, "ProtectedFromScaleIn": { "allOf": [ { "$ref": "#/components/schemas/InstanceProtected" }, { "description": "Indicates whether the instance is protected from termination by Amazon EC2 Auto Scaling when scaling in." } ] }, "WeightedCapacity": { "allOf": [ { "$ref": "#/components/schemas/XmlStringMaxLen32" }, { "description": "

The number of capacity units contributed by the instance based on its instance type.

Valid Range: Minimum value of 1. Maximum value of 999.

" } ] } }, "required": [ "InstanceId", "AutoScalingGroupName", "AvailabilityZone", "LifecycleState", "HealthStatus", "ProtectedFromScaleIn" ] }