interface BeforeEntryConditionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CodePipeline.CfnPipeline.BeforeEntryConditionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscodepipeline#CfnPipeline_BeforeEntryConditionsProperty |
Java | software.amazon.awscdk.services.codepipeline.CfnPipeline.BeforeEntryConditionsProperty |
Python | aws_cdk.aws_codepipeline.CfnPipeline.BeforeEntryConditionsProperty |
TypeScript | aws-cdk-lib » aws_codepipeline » CfnPipeline » BeforeEntryConditionsProperty |
The conditions for making checks for entry to a stage.
For more information about conditions, see Stage conditions and How do stage conditions work? .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_codepipeline as codepipeline } from 'aws-cdk-lib';
declare const configuration: any;
const beforeEntryConditionsProperty: codepipeline.CfnPipeline.BeforeEntryConditionsProperty = {
conditions: [{
result: 'result',
rules: [{
commands: ['commands'],
configuration: configuration,
inputArtifacts: [{
name: 'name',
}],
name: 'name',
region: 'region',
roleArn: 'roleArn',
ruleTypeId: {
category: 'category',
owner: 'owner',
provider: 'provider',
version: 'version',
},
}],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| conditions? | IResolvable | (IResolvable | Condition)[] | The conditions that are configured as entry conditions. |
conditions?
Type:
IResolvable | (IResolvable | Condition)[]
(optional)
The conditions that are configured as entry conditions.

.NET
Go
Java
Python
TypeScript