Amazon CodePipeline · JSON Structure

Amazon Codepipeline Put Webhook Input Structure

PutWebhookInput schema from Amazon CodePipeline

Type: object Properties: 2 Required: 1
AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

PutWebhookInput is a JSON Structure definition published by Amazon CodePipeline, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

webhook tags

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-put-webhook-input-structure.json",
  "name": "PutWebhookInput",
  "description": "PutWebhookInput schema from Amazon CodePipeline",
  "type": "object",
  "properties": {
    "webhook": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WebhookDefinition"
        },
        {
          "description": "The detail provided in an input file to create the webhook, such as the webhook name, the pipeline name, and the action name. Give the webhook a unique name that helps you identify it. You might name the webhook after the pipeline and action it targets so that you can easily recognize what it's used for later."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagList"
        },
        {
          "description": "The tags for the webhook."
        }
      ]
    }
  },
  "required": [
    "webhook"
  ]
}