InputConfigurationRequest

The transport parameters that you want to associate with an incoming media stream.

BroadcastingLive VideoMediaMedia Transport

Properties

Name Type Description
InputPort object
Interface object
View JSON Schema on GitHub

JSON Schema

mediaconnect-api-input-configuration-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-input-configuration-request-schema.json",
  "title": "InputConfigurationRequest",
  "description": "The transport parameters that you want to associate with an incoming media stream.",
  "type": "object",
  "properties": {
    "InputPort": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integer"
        },
        {
          "xml": {
            "name": "inputPort"
          },
          "description": "The port that you want the flow to listen on for an incoming media stream."
        }
      ]
    },
    "Interface": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InterfaceRequest"
        },
        {
          "xml": {
            "name": "interface"
          },
          "description": "The VPC interface that you want to use for the incoming media stream."
        }
      ]
    }
  },
  "required": [
    "InputPort",
    "Interface"
  ]
}