Enum ExecutionMode

java.lang.Object
java.lang.Enum<ExecutionMode>
software.amazon.awscdk.services.codepipeline.ExecutionMode
All Implemented Interfaces:
Serializable, Comparable<ExecutionMode>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-22T02:23:58.885Z") @Stability(Stable) public enum ExecutionMode extends Enum<ExecutionMode>
Execution mode.

Example:

 Pipeline.Builder.create(this, "Pipeline")
         .pipelineType(PipelineType.V2)
         .executionMode(ExecutionMode.PARALLEL)
         .build();
 
  • Enum Constant Details

    • QUEUED

      @Stability(Stable) public static final ExecutionMode QUEUED
      QUEUED mode.

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

      This requires pipeline type V2.

    • SUPERSEDED

      @Stability(Stable) public static final ExecutionMode SUPERSEDED
      SUPERSEDED mode.

      A more recent execution can overtake an older one.

      This is the default.

    • PARALLEL

      @Stability(Stable) public static final ExecutionMode 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.

  • Method Details

    • values

      public static ExecutionMode[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static ExecutionMode valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null