AddFlowMediaStreamsRequest

A request to add media streams to the flow.

BroadcastingLive VideoMediaMedia Transport

Properties

Name Type Description
MediaStreams object
View JSON Schema on GitHub

JSON Schema

mediaconnect-api-add-flow-media-streams-request-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-add-flow-media-streams-request-schema.json",
  "title": "AddFlowMediaStreamsRequest",
  "description": "A request to add media streams to the flow.",
  "type": "object",
  "properties": {
    "MediaStreams": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__listOfAddMediaStreamRequest"
        },
        {
          "xml": {
            "name": "mediaStreams"
          },
          "description": "The media streams that you want to add to the flow."
        }
      ]
    }
  },
  "required": [
    "MediaStreams"
  ]
}