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
1 answer

How can I debug my SNS subscription?

I have created a basic SNS topic. It's a HTTP (and HTTPS) request a an endpoint on my web server. The web server is not on AWS. The endpoint the SNS subscription points to sends me an email containing all of the headers of the request. Even if…
Mike
  • 8,767
  • 8
  • 49
  • 103
1
vote
1 answer

How To Put DynamoDB Put Requests In A Queue

I have seen a lot of people mentioning, that a way to deal with limited WCUs in DynamoDB is to send your requests in a Queue and let the queue insert the data into dynamodb in a way that will not go over your allocated WCUs. Does anyone have any…
1
vote
1 answer

AWS SNS response handling

Am new to implement AWS SNS SMS gateway for my Java program. After the successful publishing message to AWS, I would like to know is the message send or not? Its always giving a response with messageId even the message fails to send. Is there any…
1
vote
2 answers

Amazon AWS SNS Delivery Status For SMS has random Log Streams

I am using Amazon's php sdk. I use Amazon SNS service to send direct sms. When I send an sms from my php application it gives me a message ID. I have to track the delivery status of each of my message. I have enabled cloud watch logs for Text…
S. A. Malik
  • 3,465
  • 6
  • 37
  • 56
1
vote
0 answers

SalesForce - AWS SNS integration reference

Is there a rereference example for salesforce and Amazon SNS Integration ?
1
vote
1 answer

SNS - subscribing to a topic does not need to be confirmed for application?

SNS newbie here. Through the AWS console, I've created a topic and created a platform application. In my iOS application's app delegate, I create an endpoint for this client and then ask sns to subscribe this client to the topic by providing the…
Running Turtle
  • 12,360
  • 20
  • 55
  • 73
1
vote
2 answers

AWS Lambda running in VPC to publish to SNS

I have a Lambda running within a VPC which accesses secure resources (ex: RDS), but I also need it to publish an SNS notification. Is there a way to do this without having a NAT gateway? Alternatively, I'm thinking of writing to a DynamoDB table…
sharath.g
  • 311
  • 5
  • 17
1
vote
0 answers

AWS SNS SMS senderID is behaving somewhat erratically

I'm trying to send alert to clients from our rails application and I would like the sender id to be our company name. I've tried setting the DefaultID using the dashboard, the ruby SDK, and setting the SenderId on each publish. However, in all cases…
1
vote
0 answers

I am trying to create Apple Development platform at AWS SNS with old p12 file. But unable to create

I am trying to create Apple Development platform at AWS SNS with old p12 file. But unable to create. This old p12 file is already used at another AWS SNS. I am getting error i.e Error loading Apple credentials from file Please help me
1
vote
2 answers

How do I confirm a subscription created using CloudFormation?

I have created a CF script that creates an EC2 instance that contains a web service. It also creates an SNS Topic and a Subscription that uses this web service as it's http endpoint. The script successfully creates the stack; the Topic and the…
1
vote
1 answer

Why do not working grape api for aws sns confirmation?

I am use Grape for create API and use AWS SNS, at the moment I want send request for confirmation but my API code is not executed. The request is sent (I'm looking at the logs), but the code does not work. However it's work via POSTMAN. Found an…
1
vote
1 answer

Can I use SNS for a server side Pub/Sub?

Right now I'm using Redis for Pub/Sub pattern on my server-side application. Moving to AWS, I was wondering if SNS can satisfy the same requirements. As far as I've read so far, SNS is implementing the same pattern but it's a little strange. All the…
Mehran
  • 15,593
  • 27
  • 122
  • 221
1
vote
2 answers

Using AWS Lambda Functions to Consume AWS SQS Queues

I'm using an AWS Lambda function that is triggered from an SNS event trigger to consume from an SQS queue. When the Lambda function executes, it pulls 10 messages from the queue, processes them, pulls another 10, and so on and so forth - up to a…
littleK
  • 19,521
  • 30
  • 128
  • 188
1
vote
1 answer

Connect to AWS SNS using boto3 from local computer.

I have an SNS topic on AWS, can I connect to it from my local computer using boto3? I can't find the right doc to clear this up.
user1187968
  • 7,154
  • 16
  • 81
  • 152
1
vote
4 answers

Amazon SNS web notification for browser

I want to implement Browser Notifications. Below is my requirement. When user opens my website than he should receive alert to subscribe to push notifications. If he chooses to allow it than I want to send him browser push notification whenever I…
Ritz
  • 51
  • 1
  • 3