I have configured a lambda function to take DynamoDb Stream as trigger. It seems to pick up all events on the DynamoDb
Is there any options to invoke Lambda only on certain type of event ( DynamoDB item delete ) so that Lambda function will not be fired on every action?
The goal is to save the cost of invoking lambda function for events that I dont need.