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

How to integrate Amazon push in React-native (Android and iOS)

I am looking for solution that how can i integrate Amazon push in React-Native project. How have gone through some of the Git repo but nothing is working. So if is there any tutorial or documentation available please let me know. Thanks in advance.
Faisal Khan
  • 2,574
  • 3
  • 20
  • 36
1
vote
1 answer

azure functions send data to AWS topic SNS

In azure, we have service bus topics and azure functions listen to this topic. If there is any data into this topic, function will be triggered. I want to send the data to AWS topic. AWS has C# SDK, but we need to setup appconfig. How can we set…
1
vote
1 answer

How to track a specific email using Amazon's Simple Email Service?

I am successfully sending emails using the AWS SDK for Java and I can also retrieve the Message ID for each email. Now I need to track the email to see if it was successfully delivered or it bounced. Is there a way to use that Message ID to track…
ChazMcDingle
  • 635
  • 2
  • 10
  • 18
1
vote
2 answers

AWS S3 Event - Client Identification

I'm looking to allow multiple clients can upload files to an S3 bucket (or buckets). The S3 create event would trigger a notification that would add a message to an SNS topic. This works, but I'm having issues deciding how to identify which client…
Blather
  • 1,118
  • 5
  • 15
  • 25
1
vote
2 answers

Send sms via aws-sdk-js

What is the way to send sms using aws-sdk-js ? https://github.com/aws/aws-sdk-js Is there is proper code available from amazon for this(javascript). I refered the below docs, but is not enough…
shijin
  • 2,998
  • 1
  • 24
  • 30
1
vote
0 answers

AWS SNS confirmSubscription API call not working

I am trying to subscribe my endpoint to an SNS https subscription. My code doesn't seem to be receiving SNS's POST request that sends the confirmation data. I am using Node with the express framework. I have a feeling I'm not parsing the response…
1
vote
1 answer

How to recieve emails with SES and post to sns

I am trying to forward all incoming emails to a SNS topic, in order to process them using a Lambda function. When I send an email to the designated address it triggers the lambda function, which fails. The reason for the failure is that instead of…
SaltySeaDog
  • 45
  • 2
  • 6
1
vote
1 answer

Error "Aws-sdk-java" conflict with maven

I am having conflict problem using aws-sdk-java and I no longer know what to do. I already tried several things and I researched several topics and I can not solve. java.lang.NoSuchMethodError: com.fasterxml.jackson.databind.ObjectMapper.enable…
1
vote
2 answers

how to subscribe a list of phone numbers to a aws-sns topic

I need to send 200 sms messages, and looking in the amazon documentation I found how to do this by subscribing to a topic but only one by one. public static void main(String[] args) { AmazonSNSClient snsClient = new AmazonSNSClient(); String…
1
vote
0 answers

Terraform for cross account sns and sqs

I have an SQS in my account A that I want to subscribe to notifications to a SNS configured in another account B. I have no ownership of account B. I am using terraform for my project. Going through the terraform documentation I found…
user2759617
  • 597
  • 1
  • 8
  • 20
1
vote
0 answers

How to send Firebase Cloud Message with AWS SNS?

I send Firebase push messsages like in this example as Data message. Its a simple REST POST call to https://fcm.googleapis.com/fcm/send Is ther a way to send it in the same way with AWS SNS ?
Ralf Wickum
  • 2,850
  • 9
  • 55
  • 103
1
vote
0 answers

how to retrieve all the sns endpoints for a user?

From an AWS Lambda function, I'm calling client.create_platform_endpoint() with a user's iOS device token. Later I want to publish() push notifications for all the endpoints of a user. How can I retrieve all of a user's sns endpoints that have been…
Carl
  • 2,896
  • 2
  • 32
  • 50
1
vote
1 answer

Logging class doesn't let Amazon SNS message to be send

I am using Amazon's SNS service to send messages to phones. The development is being made with Java and Amazon's SDK. At first it was working perfectly, but now the messages have stopped being send, and the following error appears on the…
Ernani
  • 319
  • 1
  • 4
  • 18
1
vote
2 answers

lambda calling another lambda and hitting concurrency threshold of 1000

Scenario- There is a master lambda who is splitting work and giving it off to multiple other lambdas (workers). The first lambda iterates and invokes the other lambdas asynchronously If the number of lambdas which are getting spawned are more than…
1
vote
1 answer

CloudFormation: Publish to SNS topic

I wrote a cloudformation template with this resource to create an SNS topic. "mySNS" : { "Type" : "AWS::SNS::Topic", "Properties" : { "Subscription" : [ { "Endpoint" : { "Fn::GetAtt": [ "myLambda", "Arn" ] }, "Protocol" :…