Amazon CodePipeline · JSON Structure

Amazon Codepipeline Execution Details Structure

The details of the actions taken and results produced on an artifact as it passes through stages in the pipeline.

Type: object Properties: 3
AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

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

Properties

summary externalExecutionId percentComplete

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-execution-details-structure.json",
  "name": "ExecutionDetails",
  "description": "The details of the actions taken and results produced on an artifact as it passes through stages in the pipeline.",
  "type": "object",
  "properties": {
    "summary": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ExecutionSummary"
        },
        {
          "description": "The summary of the current status of the actions."
        }
      ]
    },
    "externalExecutionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ExecutionId"
        },
        {
          "description": "The system-generated unique ID of this action used to identify this job worker in any external systems, such as CodeDeploy."
        }
      ]
    },
    "percentComplete": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Percentage"
        },
        {
          "description": "The percentage of work completed on the action, represented on a scale of 0 to 100 percent."
        }
      ]
    }
  }
}