Show / Hide Table of Contents

Interface CfnPipeline.IBeforeEntryConditionsProperty

The conditions for making checks for entry to a stage.

Namespace: Amazon.CDK.AWS.CodePipeline
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnPipeline.IBeforeEntryConditionsProperty
Syntax (vb)
Public Interface 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

Properties

Conditions

The conditions that are configured as entry conditions.

Properties

Conditions

The conditions that are configured as entry conditions.

object? Conditions { get; }
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)[]

Back to top Generated by DocFX