@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-03-22T19:35:51.881Z")
public interface StageDeploymentProps
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 java.util.List<Step> |
getPost()
Additional steps to run after all of the stacks in the stage.
|
default java.util.List<Step> |
getPre()
Additional steps to run before any of the stacks in the stage.
|
default java.util.List<StackSteps> |
getStackSteps()
Instructions for additional steps that are run at the stack level.
|
default java.lang.String |
getStageName()
Stage name to use in the pipeline.
|
default java.util.List<Step> getPost()
Default: - No additional steps
default java.util.List<Step> getPre()
Default: - No additional steps
default java.util.List<StackSteps> getStackSteps()
Default: - No additional instructions
default java.lang.String getStageName()
Default: - Use Stage's construct ID
static StageDeploymentProps.Builder builder()
StageDeploymentProps.Builder
of StageDeploymentProps