Settings for pausing a pipeline.
{ "$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-pause-state-settings-schema.json", "title": "PipelinePauseStateSettings", "description": "Settings for pausing a pipeline.", "type": "object", "properties": { "PipelineId": { "allOf": [ { "$ref": "#/components/schemas/PipelineId" }, { "xml": { "name": "pipelineId" }, "description": "Pipeline ID to pause (\"PIPELINE_0\" or \"PIPELINE_1\")." } ] } }, "required": [ "PipelineId" ] }