Amazon CodePipeline · JSON Structure

Amazon Codepipeline Get Pipeline State Output Structure

Represents the output of a GetPipelineState action.

Type: object Properties: 5
AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

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

Properties

pipelineName pipelineVersion stageStates created updated

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-state-output-structure.json",
  "name": "GetPipelineStateOutput",
  "description": "Represents the output of a <code>GetPipelineState</code> action.",
  "type": "object",
  "properties": {
    "pipelineName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PipelineName"
        },
        {
          "description": "The name of the pipeline for which you want to get the state."
        }
      ]
    },
    "pipelineVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PipelineVersion"
        },
        {
          "description": "<p>The version number of the pipeline.</p> <note> <p>A newly created pipeline is always assigned a version number of <code>1</code>.</p> </note>"
        }
      ]
    },
    "stageStates": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StageStateList"
        },
        {
          "description": "A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data."
        }
      ]
    },
    "created": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The date and time the pipeline was created, in timestamp format."
        }
      ]
    },
    "updated": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The date and time the pipeline was last updated, in timestamp format."
        }
      ]
    }
  }
}