WaveProps

class aws_cdk.pipelines.WaveProps(*, post=None, pre=None)

Bases: object

Construction properties for a Wave.

Parameters:
  • post (Optional[Sequence[Step]]) – Additional steps to run after all of the stages in the wave. Default: - No additional steps

  • pre (Optional[Sequence[Step]]) – Additional steps to run before any of the stages in the wave. Default: - No additional steps

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import pipelines

# step: pipelines.Step

wave_props = pipelines.WaveProps(
    post=[step],
    pre=[step]
)

Attributes

post

Additional steps to run after all of the stages in the wave.

Default:
  • No additional steps

pre

Additional steps to run before any of the stages in the wave.

Default:
  • No additional steps