Interface CfnPipeline.GitBranchFilterCriteriaProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipeline.GitBranchFilterCriteriaProperty.Jsii$Proxy
- Enclosing class:
CfnPipeline
@Stability(Stable)
public static interface CfnPipeline.GitBranchFilterCriteriaProperty
extends software.amazon.jsii.JsiiSerializable
The Git repository branches specified as filter criteria to start the pipeline.
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.*;
GitBranchFilterCriteriaProperty gitBranchFilterCriteriaProperty = GitBranchFilterCriteriaProperty.builder()
.excludes(List.of("excludes"))
.includes(List.of("includes"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPipeline.GitBranchFilterCriteriaPropertystatic final classAn implementation forCfnPipeline.GitBranchFilterCriteriaProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The list of patterns of Git branches that, when a commit is pushed, are to be excluded from starting the pipeline.The list of patterns of Git branches that, when a commit is pushed, are to be included as criteria that starts the pipeline.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExcludes
The list of patterns of Git branches that, when a commit is pushed, are to be excluded from starting the pipeline.- See Also:
-
getIncludes
The list of patterns of Git branches that, when a commit is pushed, are to be included as criteria that starts the pipeline.- See Also:
-
builder
-