interface SuccessConditionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodePipeline.Mixins.CfnPipelinePropsMixin.SuccessConditionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodepipeline/mixins#CfnPipelinePropsMixin_SuccessConditionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.codepipeline.mixins.CfnPipelinePropsMixin.SuccessConditionsProperty |
Python | aws_cdk.mixins_preview.aws_codepipeline.mixins.CfnPipelinePropsMixin.SuccessConditionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_codepipeline » mixins » CfnPipelinePropsMixin » SuccessConditionsProperty |
The conditions for making checks that, if met, succeed 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 { mixins as codepipeline_mixins } from '@aws-cdk/mixins-preview/aws-codepipeline';
declare const configuration: any;
const successConditionsProperty: codepipeline_mixins.CfnPipelinePropsMixin.SuccessConditionsProperty = {
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 success conditions. |
conditions?
Type:
IResolvable | (IResolvable | Condition)[]
(optional)
The conditions that are success conditions.

.NET
Go
Java
Python
TypeScript