Amazon MediaConnect · Schema
ListedBridge
Displays details of the selected bridge.
BroadcastingLive VideoMediaMedia Transport
Properties
| Name | Type | Description |
|---|---|---|
| BridgeArn | object | |
| BridgeState | object | |
| BridgeType | object | |
| Name | object | |
| PlacementArn | 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-listed-bridge-schema.json",
"title": "ListedBridge",
"description": "Displays details of the selected bridge.",
"type": "object",
"properties": {
"BridgeArn": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"xml": {
"name": "bridgeArn"
},
"description": "The ARN of the bridge."
}
]
},
"BridgeState": {
"allOf": [
{
"$ref": "#/components/schemas/BridgeState"
},
{
"xml": {
"name": "bridgeState"
}
}
]
},
"BridgeType": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"xml": {
"name": "bridgeType"
},
"description": "The type of the bridge."
}
]
},
"Name": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"xml": {
"name": "name"
},
"description": "The name of the bridge."
}
]
},
"PlacementArn": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"xml": {
"name": "placementArn"
},
"description": "The ARN of the gateway associated with the bridge."
}
]
}
},
"required": [
"BridgeArn",
"BridgeState",
"PlacementArn",
"BridgeType",
"Name"
]
}