Amazon CodeBuild · JSON Structure

Amazon Codebuild Update Webhook Input Structure

UpdateWebhookInput schema from Amazon CodeBuild

Type: object Properties: 5 Required: 1
AmazonCI/CDBuildContinuous IntegrationDevOpsTesting

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

Properties

projectName branchFilter rotateSecret filterGroups buildType

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-codebuild/refs/heads/main/json-structure/amazon-codebuild-update-webhook-input-structure.json",
  "name": "UpdateWebhookInput",
  "description": "UpdateWebhookInput schema from Amazon CodeBuild",
  "type": "object",
  "properties": {
    "projectName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectName"
        },
        {
          "description": "The name of the CodeBuild project."
        }
      ]
    },
    "branchFilter": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "<p>A regular expression used to determine which repository branches are built when a webhook is triggered. If the name of a branch matches the regular expression, then it is built. If <code>branchFilter</code> is empty, then all branches are built.</p> <note> <p> It is recommended that you use <code>filterGroups</code> instead of <code>branchFilter</code>. </p> </note>"
        }
      ]
    },
    "rotateSecret": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "description": " A boolean value that specifies whether the associated GitHub repository's secret token should be updated. If you use Bitbucket for your repository, <code>rotateSecret</code> is ignored. "
        }
      ]
    },
    "filterGroups": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FilterGroups"
        },
        {
          "description": " An array of arrays of <code>WebhookFilter</code> objects used to determine if a webhook event can trigger a build. A filter group must contain at least one <code>EVENT</code> <code>WebhookFilter</code>. "
        }
      ]
    },
    "buildType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WebhookBuildType"
        },
        {
          "description": "Specifies the type of build this webhook will trigger."
        }
      ]
    }
  },
  "required": [
    "projectName"
  ]
}