interface WaveProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.Pipelines.WaveProps | 
|  Java | software.amazon.awscdk.pipelines.WaveProps | 
|  Python | aws_cdk.pipelines.WaveProps | 
|  TypeScript (source) | @aws-cdk/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 * as pipelines from '@aws-cdk/pipelines';
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.
