Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UpdateWebhookInput

import type { UpdateWebhookInput } from "https://aws-api.deno.dev/v0.3/services/codebuild.ts?docs=full";
interface UpdateWebhookInput {
branchFilter?: string | null;
buildType?: WebhookBuildType | null;
filterGroups?: WebhookFilter[][] | null;
projectName: string;
rotateSecret?: boolean | null;
}

§Properties

§
branchFilter?: string | null
[src]

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.

Note: It is recommended that you use filterGroups instead of branchFilter.

§
buildType?: WebhookBuildType | null
[src]

Specifies the type of build this webhook will trigger.

§
filterGroups?: WebhookFilter[][] | null
[src]

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.

§
projectName: string
[src]

The name of the CodeBuild project.

§
rotateSecret?: boolean | null
[src]

A boolean value that specifies whether the associated GitHub repository's secret token should be updated. If you use Bitbucket for your repository, rotateSecret is ignored.