Amazon CodePipeline · JSON Structure

Amazon Codepipeline Get Pipeline Execution Input Structure

Represents the input of a GetPipelineExecution action.

Type: object Properties: 2 Required: 2
AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

GetPipelineExecutionInput is a JSON Structure definition published by Amazon CodePipeline, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

pipelineName pipelineExecutionId

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-get-pipeline-execution-input-structure.json",
  "name": "GetPipelineExecutionInput",
  "description": "Represents the input of a <code>GetPipelineExecution</code> action.",
  "type": "object",
  "properties": {
    "pipelineName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PipelineName"
        },
        {
          "description": "The name of the pipeline about which you want to get execution details."
        }
      ]
    },
    "pipelineExecutionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PipelineExecutionId"
        },
        {
          "description": "The ID of the pipeline execution about which you want to get execution details."
        }
      ]
    }
  },
  "required": [
    "pipelineName",
    "pipelineExecutionId"
  ]
}