Amazon Lightsail · JSON Structure

Amazon Lightsail Instance Structure

An Amazon Lightsail virtual server instance.

Type: object Properties: 7

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

Properties

name arn blueprintId bundleId publicIpAddress privateIpAddress createdAt

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-lightsail/refs/heads/main/json-structure/amazon-lightsail-instance-structure.json",
  "name": "Instance",
  "description": "An Amazon Lightsail virtual server instance.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name the user gave the instance.",
      "example": "my-wordpress-site"
    },
    "arn": {
      "type": "string",
      "description": "The Amazon Resource Name (ARN) of the instance."
    },
    "blueprintId": {
      "type": "string",
      "description": "The blueprint ID of the instance.",
      "example": "wordpress_5_7"
    },
    "bundleId": {
      "type": "string",
      "description": "The bundle for the instance.",
      "example": "micro_2_0"
    },
    "publicIpAddress": {
      "type": "string",
      "description": "The public IP address of the instance.",
      "example": "54.123.45.67"
    },
    "privateIpAddress": {
      "type": "string",
      "description": "The private IP address of the instance.",
      "example": "172.26.0.5"
    },
    "createdAt": {
      "type": "datetime",
      "description": "The timestamp when the instance was created."
    }
  }
}