Enum Class ProcessorType

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

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-06T23:25:17.567Z") @Stability(Stable) public enum ProcessorType extends Enum<ProcessorType>
Execution type for the Map workflow.

Example:

 Map map = Map.Builder.create(this, "Map State")
         .maxConcurrency(1)
         .itemsPath(JsonPath.stringAt("$.inputForMap"))
         .itemSelector(Map.of(
                 "item", JsonPath.stringAt("$.Map.Item.Value")))
         .resultPath("$.mapOutput")
         .build();
 map.itemProcessor(new Pass(this, "Pass State"), ProcessorConfig.builder()
         .mode(ProcessorMode.DISTRIBUTED)
         .executionType(ProcessorType.STANDARD)
         .build());
 
  • Enum Constant Details

    • STANDARD

      @Stability(Stable) public static final ProcessorType STANDARD
      Standard execution type.
    • EXPRESS

      @Stability(Stable) public static final ProcessorType EXPRESS
      Express execution type.
  • Method Details

    • values

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

      public static ProcessorType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null