Amazon Cloud Map · Schema

Instance

Represents an instance registered with a Cloud Map service.

Cloud MapService DiscoveryMicroservicesDNS

Properties

Name Type Description
Id string An identifier that you want to associate with the instance.
Attributes object Custom attributes associated with the instance.
View JSON Schema on GitHub

JSON Schema

cloud-map-instance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cloud-map/refs/heads/main/json-schema/cloud-map-instance-schema.json",
  "title": "Instance",
  "description": "Represents an instance registered with a Cloud Map service.",
  "type": "object",
  "properties": {
    "Id": {
      "type": "string",
      "description": "An identifier that you want to associate with the instance.",
      "example": "i-1234567890abcdef0"
    },
    "Attributes": {
      "type": "object",
      "description": "Custom attributes associated with the instance."
    }
  }
}