Amazon MediaLive · Schema

InputPrepareScheduleActionSettings

Action to prepare an input for a future immediate input switch.

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
InputAttachmentNameReference object
InputClippingSettings object
UrlPath object
View JSON Schema on GitHub

JSON Schema

medialive-api-input-prepare-schedule-action-settings-schema.json Raw ↑
{
  "$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-prepare-schedule-action-settings-schema.json",
  "title": "InputPrepareScheduleActionSettings",
  "description": "Action to prepare an input for a future immediate input switch.",
  "type": "object",
  "properties": {
    "InputAttachmentNameReference": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "inputAttachmentNameReference"
          },
          "description": "The name of the input attachment that should be prepared by this action. If no name is provided, the action will stop the most recent prepare (if any) when activated."
        }
      ]
    },
    "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."
        }
      ]
    }
  }
}