Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AWS SNS Publish to specific User via Cognito Identity ID

What I'm trying to do here is sending a notification via SNS and APNS when a specific user is part of a newly added DynamoDB Item. I want to send it to the users Cognito Identity ID, not to device token.

So Lambda should be triggered when the item is added and then go through a list of Cognito Identity IDs, which is also part of the item.

Then Lambda is supposed to publish the push notifications to each Cognito Identity ID.

All the devices are registered as endpoints within sns. I also keep the Cognito Identity ID in the "user data" row for the endpoint.

But i didn't find a way to send notifications directly to a Cognito Identity ID. Do i have to add a topic for each user and send the notification to that topic? Or do i have to store another DynamoDB table to map Cognito Identity IDs to device tokens? It would be great if someone knew an easier and not too expensive way!

Thank you!

like image 497
weka1 Avatar asked Mar 12 '23 05:03

weka1


1 Answers

If you are sending Push Notifications via SNS to APNS or GCM then you first need to create an SNS Platform Endpoint for each device token registered for Push Notifications. Once you have an SNS Endpoint, you'll need to map that endpoint with the Cognito Identity ID in the user table or another mapping table.

When a new item is added to DynamoDB, the event handler (Lambda) will need to map the incoming Cognito Identity ID to the SNS Platform Endpoint in the user table and then it can direct publish to that one endpoint.

You do not need to create an SNS Topic for sending Push to individual endpoints.

like image 62
Dennis H Avatar answered Apr 02 '23 12:04

Dennis H