Amazon MediaLive · Schema
InputSwitchScheduleActionSettings
Settings for the "switch input" action: to switch from ingesting one input to ingesting another input.
BroadcastingMedia ProcessingMedia
Properties
| Name | Type | Description |
|---|---|---|
| InputAttachmentNameReference | object | |
| InputClippingSettings | object | |
| UrlPath | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-medialive/refs/heads/main/json-schema/medialive-api-input-switch-schedule-action-settings-schema.json",
"title": "InputSwitchScheduleActionSettings",
"description": "Settings for the \"switch input\" action: to switch from ingesting one input to ingesting another input.",
"type": "object",
"properties": {
"InputAttachmentNameReference": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"xml": {
"name": "inputAttachmentNameReference"
},
"description": "The name of the input attachment (not the name of the input!) to switch to. The name is specified in the channel configuration."
}
]
},
"InputClippingSettings": {
"allOf": [
{
"$ref": "#/components/schemas/InputClippingSettings"
},
{
"xml": {
"name": "inputClippingSettings"
},
"description": "Settings to let you create a clip of the file input, in order to set up the input to ingest only a portion of the file."
}
]
},
"UrlPath": {
"allOf": [
{
"$ref": "#/components/schemas/__listOf__string"
},
{
"xml": {
"name": "urlPath"
},
"description": "The value for the variable portion of the URL for the dynamic input, for this instance of the input. Each time you use the same dynamic input in an input switch action, you can provide a different value, in order to connect the input to a different content source."
}
]
}
},
"required": [
"InputAttachmentNameReference"
]
}