Values.InvokeLambdaActionSourceThe action to invoke an Amazon Web Services Lambda function for processing the email.
type nonrec t = {actionFailurePolicy : ActionFailurePolicy.t option;A policy that states what to do in the case of failure. The action will fail if there are configuration errors. For example, the Amazon Web Services Lambda function no longer exists.
*)functionArn : LambdaFunctionArn.t;The Amazon Resource Name (ARN) of the Lambda function to invoke.
*)invocationType : LambdaInvocationType.t;The invocation type of the Lambda function. Use EVENT for asynchronous invocation or REQUEST_RESPONSE for synchronous invocation.
*)roleArn : IamRoleArn.t;The Amazon Resource Name (ARN) of the IAM role to use to invoke the Lambda function.
*)retryTimeMinutes : LambdaRetryTimeMinutes.t option;The maximum time in minutes that the email processing can be retried if the Lambda invocation fails. The maximum value is 2160 minutes (36 hours).
*)}val make :
?actionFailurePolicy:??? ->
?retryTimeMinutes:??? ->
functionArn:LambdaFunctionArn.t ->
invocationType:LambdaInvocationType.t ->
roleArn:IamRoleArn.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of LambdaRetryTimeMinutes.t
| `String of LambdaFunctionArn.t ])
list ]