AgentNetworkInfo

AgentNetworkInfo schema from Amazon Application Discovery Service API

Amazon Application Discovery ServiceMigrationDiscoveryInfrastructure

Properties

Name Type Description
ipAddress string The IP address for the host where the agent or collector resides.
macAddress string The MAC address for the host where the agent or collector resides.
View JSON Schema on GitHub

JSON Schema

application-discovery-service-agent-network-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-application-discovery-service/refs/heads/main/json-schema/application-discovery-service-agent-network-info-schema.json",
  "title": "AgentNetworkInfo",
  "description": "AgentNetworkInfo schema from Amazon Application Discovery Service API",
  "type": "object",
  "properties": {
    "ipAddress": {
      "type": "string",
      "example": "10.0.0.10",
      "description": "The IP address for the host where the agent or collector resides."
    },
    "macAddress": {
      "type": "string",
      "example": "aa:bb:cc:dd:ee:ff",
      "description": "The MAC address for the host where the agent or collector resides."
    }
  }
}