Amazon Panorama · Schema
StaticIpConnectionInfo
A static IP configuration.
CamerasComputer VisionEdge MLIndustrial IoT
Properties
| Name | Type | Description |
|---|---|---|
| DefaultGateway | object | |
| Dns | object | |
| IpAddress | object | |
| Mask | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-panorama/refs/heads/main/json-schema/openapi-static-ip-connection-info-schema.json",
"title": "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"
]
}