Amazon MediaPackage · JSON Structure

Mediapackage Api Ingest Endpoint Structure

An endpoint for ingesting source content for a Channel.

Type: object Properties: 4
BroadcastingMedia ProcessingMedia

IngestEndpoint is a JSON Structure definition published by Amazon MediaPackage, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Id Password Url Username

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-mediapackage/refs/heads/main/json-structure/mediapackage-api-ingest-endpoint-structure.json",
  "name": "IngestEndpoint",
  "type": "object",
  "description": "An endpoint for ingesting source content for a Channel.",
  "properties": {
    "Id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "id"
          },
          "description": "The system generated unique identifier for the IngestEndpoint"
        }
      ]
    },
    "Password": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "password"
          },
          "description": "The system generated password for ingest authentication."
        }
      ]
    },
    "Url": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "url"
          },
          "description": "The ingest URL to which the source stream should be sent."
        }
      ]
    },
    "Username": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "username"
          },
          "description": "The system generated username for ingest authentication."
        }
      ]
    }
  }
}