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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:48.101Z") @Stability(Deprecated) @Deprecated public enum InvocationType extends Enum<InvocationType>
Deprecated.
use LambdaInvocationType
(deprecated) Invocation type of a Lambda.

  • Enum Constant Details

    • REQUEST_RESPONSE

      @Stability(Deprecated) @Deprecated public static final InvocationType REQUEST_RESPONSE
      Deprecated.
      (deprecated) Invoke synchronously.

      The API response includes the function response and additional data.

    • EVENT

      @Stability(Deprecated) @Deprecated public static final InvocationType EVENT
      Deprecated.
      (deprecated) Invoke 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(Deprecated) @Deprecated public static final InvocationType DRY_RUN
      Deprecated.
      (deprecated) TValidate parameter values and verify that the user or role has permission to invoke the function.
  • Method Details

    • values

      public static InvocationType[] values()
      Deprecated.
      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 InvocationType valueOf(String name)
      Deprecated.
      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