Amazon CodePipeline · JSON Structure

Amazon Codepipeline Action Execution Result Structure

Execution result information, such as the external execution ID.

Type: object Properties: 3
AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

ActionExecutionResult 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

externalExecutionId externalExecutionSummary externalExecutionUrl

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-action-execution-result-structure.json",
  "name": "ActionExecutionResult",
  "description": "Execution result information, such as the external execution ID.",
  "type": "object",
  "properties": {
    "externalExecutionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ExternalExecutionId"
        },
        {
          "description": "The action provider's external ID for the action execution."
        }
      ]
    },
    "externalExecutionSummary": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ExternalExecutionSummary"
        },
        {
          "description": "The action provider's summary for the action execution."
        }
      ]
    },
    "externalExecutionUrl": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Url"
        },
        {
          "description": "The deepest external link to the external resource (for example, a repository URL or deployment endpoint) that is used when running the action."
        }
      ]
    }
  }
}