EgressGatewayBridge

EgressGatewayBridge schema from AWS Elemental MediaConnect API

BroadcastingLive VideoMediaMedia Transport

Properties

Name Type Description
InstanceId object
MaxBitrate object
View JSON Schema on GitHub

JSON Schema

mediaconnect-api-egress-gateway-bridge-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediaconnect/refs/heads/main/json-schema/mediaconnect-api-egress-gateway-bridge-schema.json",
  "title": "EgressGatewayBridge",
  "description": "EgressGatewayBridge schema from AWS Elemental MediaConnect API",
  "type": "object",
  "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 egress bridge."
        }
      ]
    }
  },
  "required": [
    "MaxBitrate"
  ]
}