{ "$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": "
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 branchFilter is empty, then all branches are built.
It is recommended that you use filterGroups instead of branchFilter.
rotateSecret is ignored. "
}
]
},
"filterGroups": {
"allOf": [
{
"$ref": "#/components/schemas/FilterGroups"
},
{
"description": " An array of arrays of WebhookFilter objects used to determine if a webhook event can trigger a build. A filter group must contain at least one EVENT WebhookFilter. "
}
]
},
"buildType": {
"allOf": [
{
"$ref": "#/components/schemas/WebhookBuildType"
},
{
"description": "Specifies the type of build this webhook will trigger."
}
]
}
},
"required": [
"projectName"
]
}