aws-cdk-lib.aws_codepipeline.CfnPipeline.StageTransitionProperty

interface StageTransitionProperty

LanguageType name
.NETAmazon.CDK.AWS.CodePipeline.CfnPipeline.StageTransitionProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscodepipeline#CfnPipeline_StageTransitionProperty
Javasoftware.amazon.awscdk.services.codepipeline.CfnPipeline.StageTransitionProperty
Pythonaws_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

NameTypeDescription
reasonstringThe reason given to the user that a stage is disabled, such as waiting for manual approval or manual tests.
stageNamestringThe 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.