Amazon MediaLive · Schema

PipelineDetail

Runtime details of a pipeline when a channel is running.

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
ActiveInputAttachmentName object
ActiveInputSwitchActionName object
ActiveMotionGraphicsActionName object
ActiveMotionGraphicsUri object
PipelineId object
View JSON Schema on GitHub

JSON Schema

medialive-api-pipeline-detail-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-pipeline-detail-schema.json",
  "title": "PipelineDetail",
  "description": "Runtime details of a pipeline when a channel is running.",
  "type": "object",
  "properties": {
    "ActiveInputAttachmentName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "activeInputAttachmentName"
          },
          "description": "The name of the active input attachment currently being ingested by this pipeline."
        }
      ]
    },
    "ActiveInputSwitchActionName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "activeInputSwitchActionName"
          },
          "description": "The name of the input switch schedule action that occurred most recently and that resulted in the switch to the current input attachment for this pipeline."
        }
      ]
    },
    "ActiveMotionGraphicsActionName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "activeMotionGraphicsActionName"
          },
          "description": "The name of the motion graphics activate action that occurred most recently and that resulted in the current graphics URI for this pipeline."
        }
      ]
    },
    "ActiveMotionGraphicsUri": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "activeMotionGraphicsUri"
          },
          "description": "The current URI being used for HTML5 motion graphics for this pipeline."
        }
      ]
    },
    "PipelineId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "pipelineId"
          },
          "description": "Pipeline ID"
        }
      ]
    }
  }
}