public static interface CfnPipeline.StageTransitionProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnPipeline.StageTransitionProperty.Builder
A builder for
CfnPipeline.StageTransitionProperty |
static class |
CfnPipeline.StageTransitionProperty.Jsii$Proxy
An implementation for
CfnPipeline.StageTransitionProperty |
Modifier and Type | Method and Description |
---|---|
static CfnPipeline.StageTransitionProperty.Builder |
builder() |
java.lang.String |
getReason()
The reason given to the user that a stage is disabled, such as waiting for manual approval or manual tests.
|
java.lang.String |
getStageName()
The name of the stage where you want to disable the inbound or outbound transition of artifacts.
|
java.lang.String getReason()
This message is displayed in the pipeline console UI.
java.lang.String getStageName()
static CfnPipeline.StageTransitionProperty.Builder builder()