Amazon MediaPackage · Schema
IngestEndpoint
An endpoint for ingesting source content for a Channel.
BroadcastingMedia ProcessingMedia
Properties
| Name | Type | Description |
|---|---|---|
| Id | object | |
| Password | object | |
| Url | object | |
| Username | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediapackage/refs/heads/main/json-schema/mediapackage-api-ingest-endpoint-schema.json",
"title": "IngestEndpoint",
"description": "An endpoint for ingesting source content for a Channel.",
"type": "object",
"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."
}
]
}
}
}