Show / Hide Table of Contents

Class CfnPipeline.GitBranchFilterCriteriaProperty

The Git repository branches specified as filter criteria to start the pipeline.

Inheritance
object
CfnPipeline.GitBranchFilterCriteriaProperty
Implements
CfnPipeline.IGitBranchFilterCriteriaProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.CodePipeline
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPipeline.GitBranchFilterCriteriaProperty : CfnPipeline.IGitBranchFilterCriteriaProperty
Syntax (vb)
Public Class CfnPipeline.GitBranchFilterCriteriaProperty Implements CfnPipeline.IGitBranchFilterCriteriaProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-gitbranchfiltercriteria.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.CodePipeline;

             var gitBranchFilterCriteriaProperty = new GitBranchFilterCriteriaProperty {
                 Excludes = new [] { "excludes" },
                 Includes = new [] { "includes" }
             };

Synopsis

Constructors

GitBranchFilterCriteriaProperty()

The Git repository branches specified as filter criteria to start the pipeline.

Properties

Excludes

The list of patterns of Git branches that, when a commit is pushed, are to be excluded from starting the pipeline.

Includes

The list of patterns of Git branches that, when a commit is pushed, are to be included as criteria that starts the pipeline.

Constructors

GitBranchFilterCriteriaProperty()

The Git repository branches specified as filter criteria to start the pipeline.

public GitBranchFilterCriteriaProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-gitbranchfiltercriteria.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.CodePipeline;

             var gitBranchFilterCriteriaProperty = new GitBranchFilterCriteriaProperty {
                 Excludes = new [] { "excludes" },
                 Includes = new [] { "includes" }
             };

Properties

Excludes

The list of patterns of Git branches that, when a commit is pushed, are to be excluded from starting the pipeline.

public string[]? Excludes { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-gitbranchfiltercriteria.html#cfn-codepipeline-pipeline-gitbranchfiltercriteria-excludes

Includes

The list of patterns of Git branches that, when a commit is pushed, are to be included as criteria that starts the pipeline.

public string[]? Includes { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-gitbranchfiltercriteria.html#cfn-codepipeline-pipeline-gitbranchfiltercriteria-includes

Implements

CfnPipeline.IGitBranchFilterCriteriaProperty
Back to top Generated by DocFX