Show / Hide Table of Contents

Class CfnPipelinePropsMixin.GitBranchFilterCriteriaProperty

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

Inheritance
object
CfnPipelinePropsMixin.GitBranchFilterCriteriaProperty
Implements
CfnPipelinePropsMixin.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.CfnPropertyMixins.AWS.CodePipeline
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnPipelinePropsMixin.GitBranchFilterCriteriaProperty : CfnPipelinePropsMixin.IGitBranchFilterCriteriaProperty
Syntax (vb)
Public Class CfnPipelinePropsMixin.GitBranchFilterCriteriaProperty Implements CfnPipelinePropsMixin.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.CfnPropertyMixins.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.CfnPropertyMixins.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

CfnPipelinePropsMixin.IGitBranchFilterCriteriaProperty
Back to top Generated by DocFX