GetPipelineInput

Represents the input of a GetPipeline action.

AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

Properties

Name Type Description
name object
version object
View JSON Schema on GitHub

JSON Schema

amazon-codepipeline-get-pipeline-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-input-schema.json",
  "title": "GetPipelineInput",
  "description": "Represents the input of a <code>GetPipeline</code> action.",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PipelineName"
        },
        {
          "description": "The name of the pipeline for which you want to get information. Pipeline names must be unique in an Amazon Web Services account."
        }
      ]
    },
    "version": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PipelineVersion"
        },
        {
          "description": "The version number of the pipeline. If you do not specify a version, defaults to the current version."
        }
      ]
    }
  },
  "required": [
    "name"
  ]
}