How to trigger the lambda function only for INSERT
event in dynamodb stream?
To reduce the cost of the lambda function, is it possible to trigger the lambda function based on the type of operation
- INSERT - insert_lambda_function
- MODIFY - update_lambda_function
- REMOVE - delete_lambda_function
No, this is not currently possible.