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? .
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; }