interface GitPushFilterProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.CodePipeline.CfnPipeline.GitPushFilterProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awscodepipeline#CfnPipeline_GitPushFilterProperty |
![]() | software.amazon.awscdk.services.codepipeline.CfnPipeline.GitPushFilterProperty |
![]() | aws_cdk.aws_codepipeline.CfnPipeline.GitPushFilterProperty |
![]() | aws-cdk-lib » aws_codepipeline » CfnPipeline » GitPushFilterProperty |
The event criteria that specify when a specified repository event will start the pipeline for the specified trigger configuration, such as the lists of Git tags to include and exclude.
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-lib';
const gitPushFilterProperty: codepipeline.CfnPipeline.GitPushFilterProperty = {
branches: {
excludes: ['excludes'],
includes: ['includes'],
},
filePaths: {
excludes: ['excludes'],
includes: ['includes'],
},
tags: {
excludes: ['excludes'],
includes: ['includes'],
},
};
Properties
Name | Type | Description |
---|---|---|
branches? | IResolvable | Git | The field that specifies to filter on branches for the push trigger configuration. |
file | IResolvable | Git | The field that specifies to filter on file paths for the push trigger configuration. |
tags? | Git | The field that contains the details for the Git tags trigger configuration. |
branches?
Type:
IResolvable
|
Git
(optional)
The field that specifies to filter on branches for the push trigger configuration.
filePaths?
Type:
IResolvable
|
Git
(optional)
The field that specifies to filter on file paths for the push trigger configuration.
tags?
Type:
Git
(optional)
The field that contains the details for the Git tags trigger configuration.