@Generated(value="jsii-pacmak/1.72.0 (build 4b8828b)", date="2022-12-14T20:30:48.403Z") @Stability(value=Stable) public interface StageProps extends software.amazon.jsii.JsiiSerializable
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.*;
Action action;
StageProps stageProps = StageProps.builder()
.stageName("stageName")
// the properties below are optional
.actions(List.of(action))
.transitionDisabledReason("transitionDisabledReason")
.transitionToEnabled(false)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
StageProps.Builder
A builder for
StageProps |
static class |
StageProps.Jsii$Proxy
An implementation for
StageProps |
| Modifier and Type | Method and Description |
|---|---|
static StageProps.Builder |
builder() |
default List<IAction> |
getActions()
The list of Actions to create this Stage with.
|
String |
getStageName()
The physical, human-readable name to assign to this Pipeline Stage.
|
default String |
getTransitionDisabledReason()
The reason for disabling transition to this stage.
|
default Boolean |
getTransitionToEnabled()
Whether to enable transition to this stage.
|
@Stability(value=Stable) @NotNull String getStageName()
@Stability(value=Stable) @Nullable default List<IAction> getActions()
You can always add more Actions later by calling {@link IStage#addAction}.
@Stability(value=Stable) @Nullable default String getTransitionDisabledReason()
Only applicable
if transitionToEnabled is set to false.
Default: 'Transition disabled'
@Stability(value=Stable) @Nullable default Boolean getTransitionToEnabled()
Default: true
@Stability(value=Stable) static StageProps.Builder builder()
StageProps.Builder of StagePropsCopyright © 2022. All rights reserved.