@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)",
date="2023-01-31T18:37:02.683Z")
public interface StackSteps
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 java.util.List<Step> |
getChangeSet()
Steps that execute after stack is prepared but before stack is deployed.
|
default java.util.List<Step> |
getPost()
Steps that execute after stack is deployed.
|
default java.util.List<Step> |
getPre()
Steps that execute before stack is prepared.
|
Stack |
getStack()
The stack you want the steps to run in.
|
Stack getStack()
default java.util.List<Step> getChangeSet()
Default: - no additional steps
default java.util.List<Step> getPost()
Default: - no additional steps
default java.util.List<Step> getPre()
Default: - no additional steps
static StackSteps.Builder builder()
StackSteps.Builder
of StackSteps