@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:16.530Z") @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))
.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.
|
@Stability(value=Stable) @Nullable default List<IAction> getActions()
You can always add more Actions later by calling {@link IStage#addAction}.
@Stability(value=Stable) @NotNull String getStageName()
@Stability(value=Stable) static StageProps.Builder builder()
StageProps.Builder of StagePropsCopyright © 2021. All rights reserved.