ExecutionMode

class aws_cdk.aws_codepipeline.ExecutionMode(value)

Bases: Enum

Execution mode.

ExampleMetadata:

infused

Example:

codepipeline.Pipeline(self, "Pipeline",
    pipeline_type=codepipeline.PipelineType.V2,
    execution_mode=codepipeline.ExecutionMode.PARALLEL
)

Attributes

PARALLEL

PARALLEL mode.

In PARALLEL mode, executions run simultaneously and independently of one another. Executions don’t wait for other runs to complete before starting or finishing.

This requires pipeline type V2.

QUEUED

QUEUED mode.

Executions are processed one by one in the order that they are queued.

This requires pipeline type V2.

SUPERSEDED

SUPERSEDED mode.

A more recent execution can overtake an older one.

This is the default.