Questions tagged [amazon-sns]

Amazon Simple Notification Service is a highly available, cloud hosted publish/subscribe manager.

Amazon Simple Notification Service is a highly available, cloud hosted publish/subscribe manager. A user creates an SNS topic and other users subscribe to it. When a message is published to a topic it is pushed to each subscriber.

2929 questions
1
vote
0 answers

AWS SNS - Error Domain=com.amazonaws.AWSSNSErrorDomain Code=0 "(null)"

I am using AWS for one of my projects and I am trying to make it so that users are able to create SNS - topics and subscribe to SNS - topics. When doing a request I get Error Domain=com.amazonaws.AWSSNSErrorDomain Code=0 "(null)". It seems like…
1
vote
1 answer

How do I send non-default Github webhook to SNS?

Currently, I have followed this tutorial and set up Lambda, Github and my SNS for receiving responses from GitHub. However, I am getting only the default webhook through this setting. How do I customise it to work with one of the other non-default…
Dawny33
  • 10,543
  • 21
  • 82
  • 134
1
vote
1 answer

send periodic notification using aws sns and lambda

I have the following use case scenario for which I am considering aws services to see how I can come up with a scalable solution. Thanks in advance for your help! Scenario: Users can sign up to an application(which is named say 'Let's Remind' or…
chakrar
  • 189
  • 2
  • 10
1
vote
1 answer

Ordered DynamoDB Operations

I'm currently building a system that needs to take in a series of DynamoDB operations from multiple sources, and execute them in the order received. Originally, I was thinking of sending all operations through a FIFO SQS queue and have a lambda…
1
vote
1 answer

AWS SQS Retry Multiple times

I am working on a requirement that asks me to call a specific endpoint after a successful to get some data. We achieved that using a SNS topic posted to a SQS queue which in turn calls an endpoint. SNS -> SQS -> My Endpoint (Process Q Message) ->…
1
vote
0 answers

Amazon SNS signature verification not working

I am working on Amazon Simple Notification service (SNS) with Liferay. I have subscribed topics to an endpoint and receiving bounce, delivery, complaint objects successfully. But I am struggling with signature verification. I am using the same code…
Nehal Soni
  • 186
  • 1
  • 9
1
vote
1 answer

Sinatra AWS SNS Endpoint - Help needed

Hiya, Due to the undocumented nature of the Amazon SNS endpoints and how they interact with the user, I am struggling to code an endpoint in Sinatra for my application. I have some code written in PHP here, but I am struggling to convert it into a…
lcarpenter
  • 798
  • 1
  • 7
  • 18
1
vote
1 answer

Amazon SNS vs PubNub vs Parse for a webrtc

I am implementing a webrtc app using twilio platform (for both ios and android). To be consistent with iOS 10, I need to integrate the CallKit which is activted in response to an external notificationn, such as a VoIP push notification. I was…
user2867237
  • 457
  • 1
  • 5
  • 20
1
vote
1 answer

The AWS Access Key Id needs a subscription for the service : AmazonSNS; Status Code: 403; Error Code: OptInRequired

I am creating Platform Application for that I am providing following details: Application Name = "TestNotification" Push Application Platform = Apple Development Push Certificate Type = iOS Push Certificate Choosing P12 file Loading Credential from…
Shashi Ranjan
  • 154
  • 2
  • 12
1
vote
1 answer

Why Amazon sends confirmation request for SNS several times

After creating new SNS Subscription for http endpoint either from CLI or from AWS Console I get request from Amazon to confirm subscription. My code performs confirmation, then I get response from Amazon that subscription is confirmed successfully…
rkm
  • 2,971
  • 22
  • 29
1
vote
1 answer

Github integration & Services (How to enable)

I have github repository with Amazon SNS service enable. It suppose to push message, but it never does it with grey dot "this hook has never been triggered". I can trigger this service manually by clicking "Test service". It works fine. I've tried…
evgeny
  • 1,039
  • 1
  • 9
  • 26
1
vote
0 answers

AWS sns CloudWatch logs generating randomly

I am using AWS sns for push notifications on Android and Ios devices. To check if notifications are received or not, I am using cloud watch logs. Since, logs are not generated for every notification, so I am not able to check status for each…
1
vote
1 answer

Create Multiple Cloudwatch Alarms for Elastic Beanstalk with SNS Email Alerts

So, I've been reading all around the internet, trying to get my functioning Elastic Beanstalk app to send me an email when a metric goes bad. I know I can do this via the console, but I want a configurable approach that I can use for multiple…
1
vote
1 answer

Trying to sending sms to India mobile through AWS SNS

My use case is to send sms to India mobile through AWS SNS. I created subscriber and selected protocol as sms. For endpoint I gave my mobile number - it accepts and created subscription. I created topic for the subscription to send sms to my mobile…
Kumaresh Babu N S
  • 1,648
  • 5
  • 23
  • 39
1
vote
1 answer

Unable to give SNS topic permission on a SQS queue programmatically

I try to enable a SNS topic to send messages to given SQS queue using the .NET client: var policy = new Policy() { Statements = new List() { new Statement(Statement.StatementEffect.Allow) { Principals = new…
vtortola
  • 34,709
  • 29
  • 161
  • 263