Class: Aws::CodePipeline::Types::GitBranchFilterCriteria
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::GitBranchFilterCriteria
- Defined in:
- gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb
Overview
The Git repository branches 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 branches that, when a commit is pushed, are to be excluded from starting the pipeline.
-
#includes ⇒ Array<String>
The list of patterns of Git branches 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 branches that, when a commit is pushed, are to be excluded from starting the pipeline.
2202 2203 2204 2205 2206 2207 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 2202 class GitBranchFilterCriteria < Struct.new( :includes, :excludes) SENSITIVE = [] include Aws::Structure end |
#includes ⇒ Array<String>
The list of patterns of Git branches that, when a commit is pushed, are to be included as criteria that starts the pipeline.
2202 2203 2204 2205 2206 2207 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 2202 class GitBranchFilterCriteria < Struct.new( :includes, :excludes) SENSITIVE = [] include Aws::Structure end |