@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.947Z") @Stability(value=Stable) 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.*;
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()
Additional steps to run after all of the stacks in the stage.
|
default List<Step> |
getPre()
Additional steps to run before any of the stacks in the stage.
|
default List<StackSteps> |
getStackSteps()
Instructions for additional steps that are run at the stack level.
|
default String |
getStageName()
Stage name to use in the pipeline.
|
@Stability(value=Stable) @Nullable default List<Step> getPost()
Default: - No additional steps
@Stability(value=Stable) @Nullable default List<Step> getPre()
Default: - No additional steps
@Stability(value=Stable) @Nullable default List<StackSteps> getStackSteps()
Default: - No additional instructions
@Stability(value=Stable) @Nullable default String getStageName()
Default: - Use Stage's construct ID
@Stability(value=Stable) static StageDeploymentProps.Builder builder()
StageDeploymentProps.Builder of StageDeploymentPropsCopyright © 2022. All rights reserved.