@Generated(value="jsii-pacmak/1.70.0 (build 03c2f6f)", date="2022-11-01T13:16:58.622Z") @Stability(value=Experimental) 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.core.*;
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()
(experimental) Steps that execute after stack is prepared but before stack is deployed.
|
default List<Step> |
getPost()
(experimental) Steps that execute after stack is deployed.
|
default List<Step> |
getPre()
(experimental) Steps that execute before stack is prepared.
|
Stack |
getStack()
(experimental) The stack you want the steps to run in.
|
@Stability(value=Experimental) @NotNull Stack getStack()
@Stability(value=Experimental) @Nullable default List<Step> getChangeSet()
Default: - no additional steps
@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) static StackSteps.Builder builder()
StackSteps.Builder of StackStepsCopyright © 2022. All rights reserved.