Amazon MediaConnect · Schema
IngressGatewayBridge
IngressGatewayBridge schema from AWS Elemental MediaConnect API
BroadcastingLive VideoMediaMedia Transport
Properties
| Name | Type | Description |
|---|---|---|
| InstanceId | object | |
| MaxBitrate | object | |
| MaxOutputs | object |
JSON Schema
{
"$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-ingress-gateway-bridge-schema.json",
"title": "IngressGatewayBridge",
"description": "IngressGatewayBridge 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 ingress bridge."
}
]
},
"MaxOutputs": {
"allOf": [
{
"$ref": "#/components/schemas/__integer"
},
{
"xml": {
"name": "maxOutputs"
},
"description": "The maximum number of outputs on the ingress bridge."
}
]
}
},
"required": [
"MaxOutputs",
"MaxBitrate"
]
}