Amazon MediaConnect · JSON Structure

Mediaconnect Api Add Bridge Network Source Request Structure

Add a network source to an existing bridge.

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

AddBridgeNetworkSourceRequest 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-add-bridge-network-source-request-structure.json",
  "name": "AddBridgeNetworkSourceRequest",
  "type": "object",
  "description": "Add a network source to an existing bridge.",
  "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. This name is used to reference the source and must be unique among sources in this bridge."
        }
      ]
    },
    "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"
  ]
}