@Stability(value=Stable)
public static interface CfnProject.WebhookFilterProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.codebuild.*;
WebhookFilterProperty webhookFilterProperty = WebhookFilterProperty.builder()
.pattern("pattern")
.type("type")
// the properties below are optional
.excludeMatchedPattern(false)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnProject.WebhookFilterProperty.Builder
A builder for
CfnProject.WebhookFilterProperty |
static class |
CfnProject.WebhookFilterProperty.Jsii$Proxy
An implementation for
CfnProject.WebhookFilterProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnProject.WebhookFilterProperty.Builder |
builder() |
default Object |
getExcludeMatchedPattern()
Used to indicate that the `pattern` determines which webhook events do not trigger a build.
|
String |
getPattern()
For a `WebHookFilter` that uses `EVENT` type, a comma-separated string that specifies one or more events.
|
String |
getType()
The type of webhook filter.
|
@Stability(value=Stable) @NotNull String getPattern()
For example, the webhook filter PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED allows all push, pull request created, and pull request updated events to trigger a build.
For a WebHookFilter that uses any of the other filter types, a regular expression pattern. For example, a WebHookFilter that uses HEAD_REF for its type and the pattern ^refs/heads/ triggers a build when the head reference is a branch with a reference name refs/heads/branch-name .
@Stability(value=Stable) @NotNull String getType()
There are six webhook filter types: EVENT , ACTOR_ACCOUNT_ID , HEAD_REF , BASE_REF , FILE_PATH , and COMMIT_MESSAGE .
pattern matches one of five event types: PUSH , PULL_REQUEST_CREATED , PULL_REQUEST_UPDATED , PULL_REQUEST_REOPENED , and PULL_REQUEST_MERGED . The EVENT patterns are specified as a comma-separated string. For example, PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED filters all push, pull request created, and pull request updated events.
The
PULL_REQUEST_REOPENEDworks with GitHub and GitHub Enterprise only.
pattern .pattern . For example, refs/heads/branch-name and refs/tags/tag-name .Works with GitHub and GitHub Enterprise push, GitHub and GitHub Enterprise pull request, Bitbucket push, and Bitbucket pull request events.
pattern . For example, refs/heads/branch-name .
Works with pull request events only.
pattern .
Works with GitHub and Bitbucket events push and pull requests events. Also works with GitHub Enterprise push events, but does not work with GitHub Enterprise pull request events.
pattern .
Works with GitHub and Bitbucket events push and pull requests events. Also works with GitHub Enterprise push events, but does not work with GitHub Enterprise pull request events.
@Stability(value=Stable) @Nullable default Object getExcludeMatchedPattern()
If true, then a webhook event that does not match the pattern triggers a build. If false, then a webhook event that matches the pattern triggers a build.
@Stability(value=Stable) static CfnProject.WebhookFilterProperty.Builder builder()
Copyright © 2022. All rights reserved.