interface WaveProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Pipelines.WaveProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/pipelines#WaveProps |
Java | software.amazon.awscdk.pipelines.WaveProps |
Python | aws_cdk.pipelines.WaveProps |
TypeScript (source) | aws-cdk-lib » pipelines » WaveProps |
Construction properties for a Wave.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { pipelines } from 'aws-cdk-lib';
declare const step: pipelines.Step;
const waveProps: pipelines.WaveProps = {
post: [step],
pre: [step],
};
Properties
| Name | Type | Description |
|---|---|---|
| post? | Step[] | Additional steps to run after all of the stages in the wave. |
| pre? | Step[] | Additional steps to run before any of the stages in the wave. |
post?
Type:
Step[]
(optional, default: No additional steps)
Additional steps to run after all of the stages in the wave.
pre?
Type:
Step[]
(optional, default: No additional steps)
Additional steps to run before any of the stages in the wave.

.NET
Go
Java
Python
TypeScript (