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: