Interface GitPushFilter
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
GitPushFilter.Jsii$Proxy
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.codepipeline.*;
GitPushFilter gitPushFilter = GitPushFilter.builder()
.branchesExcludes(List.of("branchesExcludes"))
.branchesIncludes(List.of("branchesIncludes"))
.filePathsExcludes(List.of("filePathsExcludes"))
.filePathsIncludes(List.of("filePathsIncludes"))
.tagsExcludes(List.of("tagsExcludes"))
.tagsIncludes(List.of("tagsIncludes"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forGitPushFilterstatic final classAn implementation forGitPushFilter -
Method Summary
Modifier and TypeMethodDescriptionstatic GitPushFilter.Builderbuilder()The list of patterns of Git branches that, when pull request events occurs, are to be excluded from starting the pipeline.The list of patterns of Git branches that, when pull request events occurs, are to be included as criteria that starts the pipeline.The list of patterns of Git repository file paths that, when pull request events occurs, are to be excluded from starting the pipeline.The list of patterns of Git repository file paths that, when pull request events occurs, are to be included as criteria that starts the pipeline.The list of patterns of Git tags that, when pushed, are to be excluded from starting the pipeline.The list of patterns of Git tags that, when pushed, are to be included as criteria that starts the pipeline.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBranchesExcludes
The list of patterns of Git branches that, when pull request events occurs, are to be excluded from starting the pipeline.You can filter with glob patterns. The
branchesExcludestakes priority over thebranchesIncludes.Maximum length of this array is 8.
Default: - no branches.
-
getBranchesIncludes
The list of patterns of Git branches that, when pull request events occurs, are to be included as criteria that starts the pipeline.You can filter with glob patterns. The
branchesExcludestakes priority over thebranchesIncludes.Maximum length of this array is 8.
Default: - no branches.
-
getFilePathsExcludes
The list of patterns of Git repository file paths that, when pull request events occurs, are to be excluded from starting the pipeline.You can filter with glob patterns. The
filePathsExcludestakes priority over thefilePathsIncludes.Maximum length of this array is 8.
Default: - no filePaths.
-
getFilePathsIncludes
The list of patterns of Git repository file paths that, when pull request events occurs, are to be included as criteria that starts the pipeline.You can filter with glob patterns. The
filePathsExcludestakes priority over thefilePathsIncludes.Maximum length of this array is 8.
Default: - no filePaths.
-
getTagsExcludes
The list of patterns of Git tags that, when pushed, are to be excluded from starting the pipeline.You can filter with glob patterns. The
tagsExcludestakes priority over thetagsIncludes.Maximum length of this array is 8.
Default: - no tags.
-
getTagsIncludes
The list of patterns of Git tags that, when pushed, are to be included as criteria that starts the pipeline.You can filter with glob patterns. The
tagsExcludestakes priority over thetagsIncludes.Maximum length of this array is 8.
Default: - no tags.
-
builder
- Returns:
- a
GitPushFilter.BuilderofGitPushFilter
-