UpdatePipelineStatusRequest

The UpdatePipelineStatusRequest structure.

Amazon Web ServicesMediaTranscodingVideo

Properties

Name Type Description
Status object
View JSON Schema on GitHub

JSON Schema

amazon-elastic-transcoder-update-pipeline-status-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-elastic-transcoder/refs/heads/main/json-schema/amazon-elastic-transcoder-update-pipeline-status-request-schema.json",
  "title": "UpdatePipelineStatusRequest",
  "description": "The <code>UpdatePipelineStatusRequest</code> structure.",
  "type": "object",
  "properties": {
    "Status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PipelineStatus"
        },
        {
          "description": "<p>The desired status of the pipeline:</p> <ul> <li> <p> <code>Active</code>: The pipeline is processing jobs.</p> </li> <li> <p> <code>Paused</code>: The pipeline is not currently processing jobs.</p> </li> </ul>"
        }
      ]
    }
  },
  "required": [
    "Status"
  ]
}