DeleteWebhookInput

DeleteWebhookInput schema from Amazon CodePipeline

AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

Properties

Name Type Description
name object
View JSON Schema on GitHub

JSON Schema

amazon-codepipeline-delete-webhook-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-delete-webhook-input-schema.json",
  "title": "DeleteWebhookInput",
  "description": "DeleteWebhookInput schema from Amazon CodePipeline",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WebhookName"
        },
        {
          "description": "The name of the webhook you want to delete."
        }
      ]
    }
  },
  "required": [
    "name"
  ]
}