Amazon CodePipeline · JSON Structure

Amazon Codepipeline Pipeline Execution Summary Structure

Summary information about a pipeline execution.

Type: object Properties: 7
AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

PipelineExecutionSummary is a JSON Structure definition published by Amazon CodePipeline, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

pipelineExecutionId status startTime lastUpdateTime sourceRevisions trigger stopTrigger

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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": "<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."
        }
      ]
    }
  }
}