Class: Aws::CodePipeline::Types::GitFilePathFilterCriteria
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::GitFilePathFilterCriteria
- Defined in:
- gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb
Overview
The Git repository file paths specified as filter criteria to start the pipeline.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#excludes ⇒ Array<String>
The list of patterns of Git repository file paths that, when a commit is pushed, are to be excluded from starting the pipeline.
-
#includes ⇒ Array<String>
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.
Instance Attribute Details
#excludes ⇒ Array<String>
The list of patterns of Git repository file paths that, when a commit is pushed, are to be excluded from starting the pipeline.
2275 2276 2277 2278 2279 2280 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 2275 class GitFilePathFilterCriteria < Struct.new( :includes, :excludes) SENSITIVE = [] include Aws::Structure end |
#includes ⇒ Array<String>
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.
2275 2276 2277 2278 2279 2280 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 2275 class GitFilePathFilterCriteria < Struct.new( :includes, :excludes) SENSITIVE = [] include Aws::Structure end |