Interface CfnPipeline.GitPushFilterProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPipeline.GitPushFilterProperty.Jsii$Proxy
Enclosing class:
CfnPipeline

@Stability(Stable) public static interface CfnPipeline.GitPushFilterProperty extends software.amazon.jsii.JsiiSerializable
The event criteria that specify when a specified repository event will start the pipeline for the specified trigger configuration, such as the lists of Git tags to include and exclude.

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.*;
 GitPushFilterProperty gitPushFilterProperty = GitPushFilterProperty.builder()
         .branches(GitBranchFilterCriteriaProperty.builder()
                 .excludes(List.of("excludes"))
                 .includes(List.of("includes"))
                 .build())
         .filePaths(GitFilePathFilterCriteriaProperty.builder()
                 .excludes(List.of("excludes"))
                 .includes(List.of("includes"))
                 .build())
         .tags(GitTagFilterCriteriaProperty.builder()
                 .excludes(List.of("excludes"))
                 .includes(List.of("includes"))
                 .build())
         .build();
 

See Also: