Module: AWSCDK::Codepipeline::ExecutionMode

Defined in:
codepipeline/execution_mode.rb

Overview

Execution mode.

Constant Summary collapse

QUEUED =
Deprecated.
Note:

Default:

QUEUED mode.

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

This requires pipeline type V2.

Jsii::Enum.new("aws-cdk-lib.aws_codepipeline.ExecutionMode", "QUEUED")
SUPERSEDED =
Deprecated.
Note:

Default:

SUPERSEDED mode.

A more recent execution can overtake an older one.

This is the default.

Jsii::Enum.new("aws-cdk-lib.aws_codepipeline.ExecutionMode", "SUPERSEDED")
PARALLEL =
Deprecated.
Note:

Default:

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.

Jsii::Enum.new("aws-cdk-lib.aws_codepipeline.ExecutionMode", "PARALLEL")