UpdatePipelineInput

Represents the input of an UpdatePipeline action.

AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

Properties

Name Type Description
pipeline object
View JSON Schema on GitHub

JSON Schema

amazon-codepipeline-update-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-update-pipeline-input-schema.json",
  "title": "UpdatePipelineInput",
  "description": "Represents the input of an <code>UpdatePipeline</code> action.",
  "type": "object",
  "properties": {
    "pipeline": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PipelineDeclaration"
        },
        {
          "description": "The name of the pipeline to be updated."
        }
      ]
    }
  },
  "required": [
    "pipeline"
  ]
}