{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codepipeline/refs/heads/main/json-structure/amazon-codepipeline-pipeline-execution-summary-structure.json", "name": "PipelineExecutionSummary", "description": "Summary information about a pipeline execution.", "type": "object", "properties": { "pipelineExecutionId": { "allOf": [ { "$ref": "#/components/schemas/PipelineExecutionId" }, { "description": "The ID of the pipeline execution." } ] }, "status": { "allOf": [ { "$ref": "#/components/schemas/PipelineExecutionStatus" }, { "description": "
The status of the pipeline execution.
InProgress: The pipeline execution is currently running.
Stopped: The pipeline execution was manually stopped. For more information, see Stopped Executions.
Stopping: The pipeline execution received a request to be manually stopped. Depending on the selected stop mode, the execution is either completing or abandoning in-progress actions. For more information, see Stopped Executions.
Succeeded: The pipeline execution was completed successfully.
Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution advanced and continued through the pipeline instead. For more information, see Superseded Executions.
Failed: The pipeline execution was not completed successfully.
StartPipelineExecution API call."
}
]
},
"stopTrigger": {
"allOf": [
{
"$ref": "#/components/schemas/StopExecutionTrigger"
},
{
"description": "The interaction that stopped a pipeline execution."
}
]
}
}
}