Amazon MediaConnect · JSON Structure

Mediaconnect Api Add Bridge Flow Source Request Structure

Add a flow source to an existing bridge.

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

AddBridgeFlowSourceRequest 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

FlowArn FlowVpcInterfaceAttachment Name

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-add-bridge-flow-source-request-structure.json",
  "name": "AddBridgeFlowSourceRequest",
  "type": "object",
  "description": "Add a flow source to an existing bridge.",
  "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"
  ]
}