Class CfnPipeline.BeforeEntryConditionsProperty
The conditions for making checks for entry to a stage.
Implements
Inherited Members
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? .
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? .
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; }