Class: Aws::CodePipeline::Types::GitTagFilterCriteria
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::GitTagFilterCriteria
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codepipeline/types.rb
Overview
The Git tags specified as filter criteria for whether a Git tag repository event will start the pipeline.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#excludes ⇒ Array<String>
The list of patterns of Git tags that, when pushed, are to be excluded from starting the pipeline.
-
#includes ⇒ Array<String>
The list of patterns of Git tags that, when pushed, are to be included as criteria that starts the pipeline.
Instance Attribute Details
#excludes ⇒ Array<String>
The list of patterns of Git tags that, when pushed, are to be excluded from starting the pipeline.
2521 2522 2523 2524 2525 2526 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 2521 class GitTagFilterCriteria < Struct.new( :includes, :excludes) SENSITIVE = [] include Aws::Structure end |
#includes ⇒ Array<String>
The list of patterns of Git tags that, when pushed, are to be included as criteria that starts the pipeline.
2521 2522 2523 2524 2525 2526 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 2521 class GitTagFilterCriteria < Struct.new( :includes, :excludes) SENSITIVE = [] include Aws::Structure end |