Amazon MediaConnect · JSON Structure

Mediaconnect Api Bridge Network Source Structure

The source of the bridge. A network source originates at your premises.

Type: object Properties: 5 Required: 5
BroadcastingLive VideoMediaMedia Transport

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

Properties

MulticastIp Name NetworkName Port Protocol

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-mediaconnect/refs/heads/main/json-structure/mediaconnect-api-bridge-network-source-structure.json",
  "name": "BridgeNetworkSource",
  "type": "object",
  "description": "The source of the bridge. A network source originates at your premises.",
  "properties": {
    "MulticastIp": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "multicastIp"
          },
          "description": "The network source multicast IP."
        }
      ]
    },
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "name"
          },
          "description": "The name of the network source."
        }
      ]
    },
    "NetworkName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "networkName"
          },
          "description": "The network source's gateway network name."
        }
      ]
    },
    "Port": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integer"
        },
        {
          "xml": {
            "name": "port"
          },
          "description": "The network source port."
        }
      ]
    },
    "Protocol": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Protocol"
        },
        {
          "xml": {
            "name": "protocol"
          },
          "description": "The network source protocol."
        }
      ]
    }
  },
  "required": [
    "NetworkName",
    "MulticastIp",
    "Port",
    "Protocol",
    "Name"
  ]
}