Amazon EC2 · Schema

RunInstancesResponse

Response from the RunInstances action

Cloud ComputingComputeIaaSInfrastructureVirtual Machines

Properties

Name Type Description
reservationId string The ID of the reservation
ownerId string The ID of the AWS account that owns the reservation
instances array The instances launched
View JSON Schema on GitHub

JSON Schema

ec2-openapi-run-instances-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ec2/refs/heads/main/json-schema/ec2-openapi-run-instances-response-schema.json",
  "title": "RunInstancesResponse",
  "description": "Response from the RunInstances action",
  "type": "object",
  "properties": {
    "reservationId": {
      "type": "string",
      "description": "The ID of the reservation"
    },
    "ownerId": {
      "type": "string",
      "description": "The ID of the AWS account that owns the reservation"
    },
    "instances": {
      "type": "array",
      "description": "The instances launched",
      "items": {
        "$ref": "#/components/schemas/Instance"
      }
    }
  }
}