Amazon MediaConnect · Schema
AddBridgeFlowSourceRequest
Add a flow source to an existing bridge.
BroadcastingLive VideoMediaMedia Transport
Properties
| Name | Type | Description |
|---|---|---|
| FlowArn | object | |
| FlowVpcInterfaceAttachment | object | |
| Name | 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-add-bridge-flow-source-request-schema.json",
"title": "AddBridgeFlowSourceRequest",
"description": "Add a flow source to an existing bridge.",
"type": "object",
"properties": {
"FlowArn": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"pattern": "^arn:.+:mediaconnect.+:flow:.+$",
"xml": {
"name": "flowArn"
},
"description": "The Amazon Resource Number (ARN) of the cloud flow to use as a source of this bridge."
}
]
},
"FlowVpcInterfaceAttachment": {
"allOf": [
{
"$ref": "#/components/schemas/VpcInterfaceAttachment"
},
{
"xml": {
"name": "flowVpcInterfaceAttachment"
},
"description": "The name of the VPC interface attachment to use for this source."
}
]
},
"Name": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"xml": {
"name": "name"
},
"description": "The name of the flow source. This name is used to reference the source and must be unique among sources in this bridge."
}
]
}
},
"required": [
"FlowArn",
"Name"
]
}