Call lambda from AWS Aurora database trigger

Viewed 97
1 Answers

You may be better just using the database activity stream or DMS, both support writing to Kinesis Data Stream which can in turn then be used to invoke a lambda. Database Activity Stream is only available on certain Aurora instance types but if it is one of the instances you are using then i think that would be the least effort to implement, the most robust and the least impact on your RDS instances themselves.

Related