InputConfiguration

The transport parameters that are associated with an incoming media stream.

BroadcastingLive VideoMediaMedia Transport

Properties

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

JSON Schema

mediaconnect-api-input-configuration-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-schema.json",
  "title": "InputConfiguration",
  "description": "The transport parameters that are associated with an incoming media stream.",
  "type": "object",
  "properties": {
    "InputIp": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "inputIp"
          },
          "description": "The IP address that the flow listens on for incoming content for a media stream."
        }
      ]
    },
    "InputPort": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integer"
        },
        {
          "xml": {
            "name": "inputPort"
          },
          "description": "The port that the flow listens on for an incoming media stream."
        }
      ]
    },
    "Interface": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Interface"
        },
        {
          "xml": {
            "name": "interface"
          },
          "description": "The VPC interface where the media stream comes in from."
        }
      ]
    }
  },
  "required": [
    "InputPort",
    "InputIp",
    "Interface"
  ]
}