LambdaInvokeFunctionOperator
AmazonInvokes an AWS Lambda function. You can invoke a function synchronously (and wait for the response), or asynchronously. To invoke a function asynchronously, set invocation_type to Event. For more details, review the boto3 Lambda invoke docs.
Access Instructions
Install the Amazon provider package into your Airflow environment.
Import the module into your DAG file and instantiate it with your desired params.
Parameters
function_nameRequiredThe name of the AWS Lambda function, version, or alias.
log_typeSet to Tail to include the execution log in the response. Otherwise, set to “None”.
qualifierSpecify a version or alias to invoke a published version of the function.
invocation_typeAWS Lambda invocation type (RequestResponse, Event, DryRun)
client_contextData about the invoking client to pass to the function in the context object
payloadJSON provided as input to the Lambda function
aws_conn_idThe AWS connection ID to use
Documentation
Invokes an AWS Lambda function. You can invoke a function synchronously (and wait for the response), or asynchronously. To invoke a function asynchronously, set invocation_type to Event. For more details, review the boto3 Lambda invoke docs.
See also
For more information on how to use this operator, take a look at the guide: Invoke an AWS Lambda function