GetPipelineExecutionInput

Represents the input of a GetPipelineExecution action.

AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

Properties

Name Type Description
pipelineName object
pipelineExecutionId object
View JSON Schema on GitHub

JSON Schema

amazon-codepipeline-get-pipeline-execution-input-schema.json Raw ↑
{
  "$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-get-pipeline-execution-input-schema.json",
  "title": "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"
  ]
}