DestinationConfigurationRequest

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

BroadcastingLive VideoMediaMedia Transport

Properties

Name Type Description
DestinationIp object
DestinationPort object
Interface object
View JSON Schema on GitHub

JSON Schema

mediaconnect-api-destination-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-destination-configuration-request-schema.json",
  "title": "DestinationConfigurationRequest",
  "description": "The transport parameters that you want to associate with an outbound media stream.",
  "type": "object",
  "properties": {
    "DestinationIp": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "destinationIp"
          },
          "description": "The IP address where you want MediaConnect to send contents of the media stream."
        }
      ]
    },
    "DestinationPort": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integer"
        },
        {
          "xml": {
            "name": "destinationPort"
          },
          "description": "The port that you want MediaConnect to use when it distributes the media stream to the output."
        }
      ]
    },
    "Interface": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InterfaceRequest"
        },
        {
          "xml": {
            "name": "interface"
          },
          "description": "The VPC interface that you want to use for the media stream associated with the output."
        }
      ]
    }
  },
  "required": [
    "DestinationIp",
    "DestinationPort",
    "Interface"
  ]
}