Amazon CodePipeline · Schema
PipelineExecutionSummary
Summary information about a pipeline execution.
AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation
Properties
| Name | Type | Description |
|---|---|---|
| pipelineExecutionId | object | |
| status | object | |
| startTime | object | |
| lastUpdateTime | object | |
| sourceRevisions | object | |
| trigger | object | |
| stopTrigger | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codepipeline/refs/heads/main/json-schema/amazon-codepipeline-pipeline-execution-summary-schema.json",
"title": "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": "<p>The status of the pipeline execution.</p> <ul> <li> <p>InProgress: The pipeline execution is currently running.</p> </li> <li> <p>Stopped: The pipeline execution was manually stopped. For more information, see <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts.html#concepts-executions-stopped\">Stopped Executions</a>.</p> </li> <li> <p>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 <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts.html#concepts-executions-stopped\">Stopped Executions</a>.</p> </li> <li> <p>Succeeded: The pipeline execution was completed successfully. </p> </li> <li> <p>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 <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts.html#concepts-superseded\">Superseded Executions</a>.</p> </li> <li> <p>Failed: The pipeline execution was not completed successfully.</p> </li> </ul>"
}
]
},
"startTime": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "The date and time when the pipeline execution began, in timestamp format."
}
]
},
"lastUpdateTime": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "The date and time of the last change to the pipeline execution, in timestamp format."
}
]
},
"sourceRevisions": {
"allOf": [
{
"$ref": "#/components/schemas/SourceRevisionList"
},
{
"description": "A list of the source artifact revisions that initiated a pipeline execution."
}
]
},
"trigger": {
"allOf": [
{
"$ref": "#/components/schemas/ExecutionTrigger"
},
{
"description": "The interaction or event that started a pipeline execution, such as automated change detection or a <code>StartPipelineExecution</code> API call."
}
]
},
"stopTrigger": {
"allOf": [
{
"$ref": "#/components/schemas/StopExecutionTrigger"
},
{
"description": "The interaction that stopped a pipeline execution."
}
]
}
}
}