interface StageTransitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CodePipeline.CfnPipeline.StageTransitionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscodepipeline#CfnPipeline_StageTransitionProperty |
Java | software.amazon.awscdk.services.codepipeline.CfnPipeline.StageTransitionProperty |
Python | aws_cdk.aws_codepipeline.CfnPipeline.StageTransitionProperty |
TypeScript | aws-cdk-lib » aws_codepipeline » CfnPipeline » 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 { aws_codepipeline as codepipeline } from 'aws-cdk-lib';
const stageTransitionProperty: codepipeline.CfnPipeline.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
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
The name of the stage where you want to disable the inbound or outbound transition of artifacts.

.NET
Go
Java
Python
TypeScript