Show / Hide Table of Contents

Class CfnPipeline.BeforeEntryConditionsProperty

The conditions for making checks for entry to a stage.

Inheritance
object
CfnPipeline.BeforeEntryConditionsProperty
Implements
CfnPipeline.IBeforeEntryConditionsProperty
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.BeforeEntryConditionsProperty : CfnPipeline.IBeforeEntryConditionsProperty
Syntax (vb)
Public Class CfnPipeline.BeforeEntryConditionsProperty Implements CfnPipeline.IBeforeEntryConditionsProperty
Remarks

For more information about conditions, see Stage conditions and How do stage conditions work? .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-beforeentryconditions.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 configuration;

             var beforeEntryConditionsProperty = new BeforeEntryConditionsProperty {
                 Conditions = new [] { new ConditionProperty {
                     Result = "result",
                     Rules = new [] { new RuleDeclarationProperty {
                         Commands = new [] { "commands" },
                         Configuration = configuration,
                         InputArtifacts = new [] { new InputArtifactProperty {
                             Name = "name"
                         } },
                         Name = "name",
                         Region = "region",
                         RoleArn = "roleArn",
                         RuleTypeId = new RuleTypeIdProperty {
                             Category = "category",
                             Owner = "owner",
                             Provider = "provider",
                             Version = "version"
                         }
                     } }
                 } }
             };

Synopsis

Constructors

BeforeEntryConditionsProperty()

The conditions for making checks for entry to a stage.

Properties

Conditions

The conditions that are configured as entry conditions.

Constructors

BeforeEntryConditionsProperty()

The conditions for making checks for entry to a stage.

public BeforeEntryConditionsProperty()
Remarks

For more information about conditions, see Stage conditions and How do stage conditions work? .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-beforeentryconditions.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 configuration;

             var beforeEntryConditionsProperty = new BeforeEntryConditionsProperty {
                 Conditions = new [] { new ConditionProperty {
                     Result = "result",
                     Rules = new [] { new RuleDeclarationProperty {
                         Commands = new [] { "commands" },
                         Configuration = configuration,
                         InputArtifacts = new [] { new InputArtifactProperty {
                             Name = "name"
                         } },
                         Name = "name",
                         Region = "region",
                         RoleArn = "roleArn",
                         RuleTypeId = new RuleTypeIdProperty {
                             Category = "category",
                             Owner = "owner",
                             Provider = "provider",
                             Version = "version"
                         }
                     } }
                 } }
             };

Properties

Conditions

The conditions that are configured as entry conditions.

public object? Conditions { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or (either IResolvable or CfnPipeline.IConditionProperty)[]

Implements

CfnPipeline.IBeforeEntryConditionsProperty
Back to top Generated by DocFX