Amazon MediaConnect · JSON Structure

Mediaconnect Api Ingress Gateway Bridge Structure

IngressGatewayBridge schema from AWS Elemental MediaConnect API

Type: object Properties: 3 Required: 2
BroadcastingLive VideoMediaMedia Transport

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

Properties

InstanceId MaxBitrate MaxOutputs

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-ingress-gateway-bridge-structure.json",
  "name": "IngressGatewayBridge",
  "type": "object",
  "description": "IngressGatewayBridge schema from AWS Elemental MediaConnect API",
  "properties": {
    "InstanceId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "instanceId"
          },
          "description": "The ID of the instance running this bridge."
        }
      ]
    },
    "MaxBitrate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integer"
        },
        {
          "xml": {
            "name": "maxBitrate"
          },
          "description": "The maximum expected bitrate (in bps) of the ingress bridge."
        }
      ]
    },
    "MaxOutputs": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integer"
        },
        {
          "xml": {
            "name": "maxOutputs"
          },
          "description": "The maximum number of outputs on the ingress bridge."
        }
      ]
    }
  },
  "required": [
    "MaxOutputs",
    "MaxBitrate"
  ]
}