@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:04.748Z") @Stability(value=Experimental) 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()
(experimental) The list of Actions to create this Stage with.
|
String |
getStageName()
(experimental) The physical, human-readable name to assign to this Pipeline Stage.
|
@Stability(value=Experimental) @NotNull String getStageName()
@Stability(value=Experimental) @Nullable default List<IAction> getActions()
You can always add more Actions later by calling {@link IStage#addAction}.
@Stability(value=Experimental) static StageProps.Builder builder()
StageProps.Builder of StagePropsCopyright © 2022. All rights reserved.