aws-cdk-lib.pipelines.WaveProps

interface WaveProps

LanguageType name
.NETAmazon.CDK.Pipelines.WaveProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/pipelines#WaveProps
Javasoftware.amazon.awscdk.pipelines.WaveProps
Pythonaws_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

NameTypeDescription
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.