Module: AWSCDK::StepFunctionsTasks::LambdaInvocationType

Defined in:
step_functions_tasks/lambda_invocation_type.rb

Overview

Invocation type of a Lambda.

Constant Summary collapse

REQUEST_RESPONSE =
Deprecated.
Note:

Default:

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.

Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.LambdaInvocationType", "REQUEST_RESPONSE")
EVENT =
Deprecated.
Note:

Default:

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.

Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.LambdaInvocationType", "EVENT")
DRY_RUN =
Deprecated.
Note:

Default:

Validate parameter values and verify that the user or role has permission to invoke the function.

Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.LambdaInvocationType", "DRY_RUN")