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