Amazon Panorama · Schema

EthernetPayload

A device's network configuration.

CamerasComputer VisionEdge MLIndustrial IoT

Properties

Name Type Description
ConnectionType object
StaticIpConnectionInfo object
View JSON Schema on GitHub

JSON Schema

openapi-ethernet-payload-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-panorama/refs/heads/main/json-schema/openapi-ethernet-payload-schema.json",
  "title": "EthernetPayload",
  "description": "A device's network configuration.",
  "type": "object",
  "properties": {
    "ConnectionType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ConnectionType"
        },
        {
          "description": "How the device gets an IP address."
        }
      ]
    },
    "StaticIpConnectionInfo": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StaticIpConnectionInfo"
        },
        {
          "description": "Network configuration for a static IP connection."
        }
      ]
    }
  },
  "required": [
    "ConnectionType"
  ]
}