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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPipeline.StageTransitionProperty
static final class
An implementation forCfnPipeline.StageTransitionProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The reason given to the user that a stage is disabled, such as waiting for manual approval or manual tests.The name of the stage where you want to disable the inbound or outbound transition of artifacts.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getReason
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.
-
getStageName
The name of the stage where you want to disable the inbound or outbound transition of artifacts. -
builder
-