connecting aws rds(postgres db) and sqs
i have a postgresql database in amazon rds,i want to send a message to aws sqs when there is a new record inserted in to the database tables, how can i do that??
You can use DynamoDb Streams
and connect it to a Lambda
, which will be triggered by changes in your DynamoDB
and gets the changed record. Then you can insert the record into SQS
.