Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name the user gave the instance. |
| arn | string | The Amazon Resource Name (ARN) of the instance. |
| blueprintId | string | The blueprint ID of the instance. |
| bundleId | string | The bundle for the instance. |
| publicIpAddress | string | The public IP address of the instance. |
| privateIpAddress | string | The private IP address of the instance. |
| createdAt | string | The timestamp when the instance was created. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-lightsail/refs/heads/main/json-schema/amazon-lightsail-instance-schema.json",
"title": "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": "string",
"description": "The timestamp when the instance was created.",
"format": "date-time"
}
}
}