Amazon Panorama · JSON Structure

Openapi Static Ip Connection Info Structure

A static IP configuration.

Type: object Properties: 4 Required: 4
CamerasComputer VisionEdge MLIndustrial IoT

StaticIpConnectionInfo is a JSON Structure definition published by Amazon Panorama, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

DefaultGateway Dns IpAddress Mask

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-panorama/refs/heads/main/json-structure/openapi-static-ip-connection-info-structure.json",
  "name": "StaticIpConnectionInfo",
  "description": "A static IP configuration.",
  "type": "object",
  "properties": {
    "DefaultGateway": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DefaultGateway"
        },
        {
          "description": "The connection's default gateway."
        }
      ]
    },
    "Dns": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DnsList"
        },
        {
          "description": "The connection's DNS address."
        }
      ]
    },
    "IpAddress": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IpAddress"
        },
        {
          "description": "The connection's IP address."
        }
      ]
    },
    "Mask": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Mask"
        },
        {
          "description": "The connection's DNS mask."
        }
      ]
    }
  },
  "required": [
    "DefaultGateway",
    "Dns",
    "IpAddress",
    "Mask"
  ]
}