@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.946Z") @Stability(value=Stable) public interface StackSteps 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;
StackSteps stackSteps = StackSteps.builder()
.stack(stack)
// the properties below are optional
.changeSet(List.of(step))
.post(List.of(step))
.pre(List.of(step))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
StackSteps.Builder
A builder for
StackSteps |
static class |
StackSteps.Jsii$Proxy
An implementation for
StackSteps |
| Modifier and Type | Method and Description |
|---|---|
static StackSteps.Builder |
builder() |
default List<Step> |
getChangeSet()
Steps that execute after stack is prepared but before stack is deployed.
|
default List<Step> |
getPost()
Steps that execute after stack is deployed.
|
default List<Step> |
getPre()
Steps that execute before stack is prepared.
|
Stack |
getStack()
The stack you want the steps to run in.
|
@Stability(value=Stable) @NotNull Stack getStack()
@Stability(value=Stable) @Nullable default List<Step> getChangeSet()
Default: - no additional steps
@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) static StackSteps.Builder builder()
StackSteps.Builder of StackStepsCopyright © 2022. All rights reserved.