GetPipelineStateInput

Represents the input of a GetPipelineState action.

AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

Properties

Name Type Description
name object
View JSON Schema on GitHub

JSON Schema

amazon-codepipeline-get-pipeline-state-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-state-input-schema.json",
  "title": "GetPipelineStateInput",
  "description": "Represents the input of a <code>GetPipelineState</code> action.",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PipelineName"
        },
        {
          "description": "The name of the pipeline about which you want to get information."
        }
      ]
    }
  },
  "required": [
    "name"
  ]
}