@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:16.701Z") @Stability(value=Experimental) public interface StageDeploymentProps 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.core.*;
import software.amazon.awscdk.pipelines.*;
Stack stack;
Step step;
StageDeploymentProps stageDeploymentProps = StageDeploymentProps.builder()
.post(List.of(step))
.pre(List.of(step))
.stackSteps(List.of(StackSteps.builder()
.stack(stack)
// the properties below are optional
.changeSet(List.of(step))
.post(List.of(step))
.pre(List.of(step))
.build()))
.stageName("stageName")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
StageDeploymentProps.Builder
A builder for
StageDeploymentProps |
static class |
StageDeploymentProps.Jsii$Proxy
An implementation for
StageDeploymentProps |
| Modifier and Type | Method and Description |
|---|---|
static StageDeploymentProps.Builder |
builder() |
default List<Step> |
getPost()
(experimental) Additional steps to run after all of the stacks in the stage.
|
default List<Step> |
getPre()
(experimental) Additional steps to run before any of the stacks in the stage.
|
default List<StackSteps> |
getStackSteps()
(experimental) Instructions for additional steps that are run at the stack level.
|
default String |
getStageName()
(experimental) Stage name to use in the pipeline.
|
@Stability(value=Experimental) @Nullable default List<Step> getPost()
Default: - No additional steps
@Stability(value=Experimental) @Nullable default List<Step> getPre()
Default: - No additional steps
@Stability(value=Experimental) @Nullable default List<StackSteps> getStackSteps()
Default: - No additional instructions
@Stability(value=Experimental) @Nullable default String getStageName()
Default: - Use Stage's construct ID
@Stability(value=Experimental) static StageDeploymentProps.Builder builder()
StageDeploymentProps.Builder of StageDeploymentPropsCopyright © 2022. All rights reserved.