interface StageTransitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodePipeline.Mixins.CfnPipelinePropsMixin.StageTransitionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodepipeline/mixins#CfnPipelinePropsMixin_StageTransitionProperty |
Java | software.amazon.awscdk.mixins.preview.services.codepipeline.mixins.CfnPipelinePropsMixin.StageTransitionProperty |
Python | aws_cdk.mixins_preview.aws_codepipeline.mixins.CfnPipelinePropsMixin.StageTransitionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_codepipeline » mixins » CfnPipelinePropsMixin » StageTransitionProperty |
The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.
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';
const stageTransitionProperty: codepipeline_mixins.CfnPipelinePropsMixin.StageTransitionProperty = {
reason: 'reason',
stageName: 'stageName',
};
Properties
| Name | Type | Description |
|---|---|---|
| reason? | string | The reason given to the user that a stage is disabled, such as waiting for manual approval or manual tests. |
| stage | string | The name of the stage where you want to disable the inbound or outbound transition of artifacts. |
reason?
Type:
string
(optional)
The reason given to the user that a stage is disabled, such as waiting for manual approval or manual tests.
This message is displayed in the pipeline console UI.
stageName?
Type:
string
(optional)
The name of the stage where you want to disable the inbound or outbound transition of artifacts.

.NET
Go
Java
Python
TypeScript