How to trigger the lambda function only for INSERT event in dynamodb stream?

639 views Asked by At

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

  1. INSERT - insert_lambda_function
  2. MODIFY - update_lambda_function
  3. REMOVE - delete_lambda_function
1

There are 1 answers

0
jellycsc On BEST ANSWER

No, this is not currently possible.