interface GitBranchFilterCriteriaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CodePipeline.CfnPipelinePropsMixin.GitBranchFilterCriteriaProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscodepipeline#CfnPipelinePropsMixin_GitBranchFilterCriteriaProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.codepipeline.CfnPipelinePropsMixin.GitBranchFilterCriteriaProperty |
Python | aws_cdk.cfn_property_mixins.aws_codepipeline.CfnPipelinePropsMixin.GitBranchFilterCriteriaProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_codepipeline » CfnPipelinePropsMixin » GitBranchFilterCriteriaProperty |
The Git repository branches 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 { aws_codepipeline as codepipeline } from '@aws-cdk/cfn-property-mixins';
const gitBranchFilterCriteriaProperty: codepipeline.CfnPipelinePropsMixin.GitBranchFilterCriteriaProperty = {
excludes: ['excludes'],
includes: ['includes'],
};
Properties
| Name | Type | Description |
|---|---|---|
| excludes? | string[] | The list of patterns of Git branches that, when a commit is pushed, are to be excluded from starting the pipeline. |
| includes? | string[] | The list of patterns of Git branches that, when a commit is pushed, are to be included as criteria that starts the pipeline. |
excludes?
Type:
string[]
(optional)
The list of patterns of Git branches that, when a commit is pushed, are to be excluded from starting the pipeline.
includes?
Type:
string[]
(optional)
The list of patterns of Git branches that, when a commit is pushed, are to be included as criteria that starts the pipeline.

.NET
Go
Java
Python
TypeScript