@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.948Z") @Stability(value=Stable) public interface WaveProps 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.pipelines.*;
Step step;
WaveProps waveProps = WaveProps.builder()
.post(List.of(step))
.pre(List.of(step))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
WaveProps.Builder
A builder for
WaveProps |
static class |
WaveProps.Jsii$Proxy
An implementation for
WaveProps |
| Modifier and Type | Method and Description |
|---|---|
static WaveProps.Builder |
builder() |
default List<Step> |
getPost()
Additional steps to run after all of the stages in the wave.
|
default List<Step> |
getPre()
Additional steps to run before any of the stages in the wave.
|
@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 WaveProps.Builder builder()
WaveProps.Builder of WavePropsCopyright © 2022. All rights reserved.