Amazon EC2 · JSON Structure

Ec2 Openapi Run Instances Response Structure

Response from the RunInstances action

Type: object Properties: 3
Cloud ComputingComputeIaaSInfrastructureVirtual Machines

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

Properties

reservationId ownerId instances

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/refs/heads/main/json-structure/ec2-openapi-run-instances-response-structure.json",
  "name": "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"
      }
    }
  }
}