Enum LambdaInvocationType

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

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-24T21:00:38.155Z") @Stability(Stable) public enum LambdaInvocationType extends Enum<LambdaInvocationType>
Invocation type of a Lambda.
  • Enum Constant Details

    • REQUEST_RESPONSE

      @Stability(Stable) public static final LambdaInvocationType REQUEST_RESPONSE
      Invoke the function synchronously.

      Keep the connection open until the function returns a response or times out. The API response includes the function response and additional data.

    • EVENT

      @Stability(Stable) public static final LambdaInvocationType EVENT
      Invoke the function asynchronously.

      Send events that fail multiple times to the function's dead-letter queue (if it's configured). The API response only includes a status code.

    • DRY_RUN

      @Stability(Stable) public static final LambdaInvocationType DRY_RUN
      Validate parameter values and verify that the user or role has permission to invoke the function.
  • Method Details

    • values

      public static LambdaInvocationType[] 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 LambdaInvocationType 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