Interface CfnPipeline.StageTransitionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPipeline.StageTransitionProperty.Jsii$Proxy
Enclosing class:
CfnPipeline

@Stability(Stable) public static interface CfnPipeline.StageTransitionProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.codepipeline.*;
 StageTransitionProperty stageTransitionProperty = StageTransitionProperty.builder()
         .reason("reason")
         .stageName("stageName")
         .build();