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

Amazon SNS: Create AWS Lambda API gateway, how to confirm subscription

I had a AWS lambda my_lambda which is configure API gateway. E.g: https://xxx.execute-api.us-east-1.amazonaws.com/{your-environment}/my_lambda. I also had a SNS my_sns_topic. I create subscription API gateway to SNS topic successfully But it need to…
jack.pop
  • 683
  • 2
  • 6
  • 21
1
vote
2 answers

Timestamp message in SNS as it passes through

I have log messages (with log timestamps) coming through logstash which get a timestamp as they enter logstash. After the message leaves logstash it is headed for SNS. I need to add a third timestamp as the message passes through SNS so that when I…
1
vote
0 answers

Local Logstash SNS Output to goaws SNS topic in Docker

First of all, if I left anything out please forgive me as this is my first post. I have docker running goaws and i added a separate container running a python daemon that i wrote. The python daemon reads from the SQS endpoint i have subscribed to my…
Aaron Watkins
  • 33
  • 1
  • 8
1
vote
1 answer

AWS CloudWatch Events trigger SNS on STS role assuming for cross account

I have a cross-account architecture and I'm setting up a CloudWatch event for the STS role assuming into another account. I have CloudTrail enabled on the account, the logs from CloudTrail are stored in a separate accounts s3 bucket. The SNS feeds…
1
vote
1 answer

AWS SNS not working with APNS

Having hard time to troubleshoot what's going wrong with my implementation of push notifications service using Amazon SNS. I created the provisioning profiles for debug and release environments and generated the certificate. Then, I created two…
1
vote
2 answers

AWS SNS message digest

I'm using AWS SNS to publish various events, and instead of sending an email every time something happens, I'm looking to roll them up into a digest and send them to relevant parties once daily For bonus points, when sending the digest as an email,…
hendry
  • 9,725
  • 18
  • 81
  • 139
1
vote
2 answers

AWS SNS - Invalid Parameter - Phone Number is not valid to publish to. On specific phone number only

We are using AWS SNS to send SMS messages. In testing, it works for all but one of our devs who isn't receiving messages, the logs show the following: Invalid parameter: PhoneNumber Reason: +1‬207XXXXXXX is not valid to publish to I left his area…
k00k
  • 17,314
  • 13
  • 59
  • 86
1
vote
1 answer

AWS SES userAgent returning the same value for all the users

We have created an application to send out bulk emails using AWS SES. We are able to send out the emails and track the metrics like Opens, Clicks etc using AWS SNS successfully. The only problem we have is that in the "Opens" object that SNS is…
1
vote
2 answers

Using Azure Service Bus to communicate between 2 organizations

We wish to decouple the systems between 2 separate organizations (as an example: one could be a set of in house applications and the other a set of 3rd party applications). Although we could do this using REST based APIs, we wish to achieve things…
Raj Rao
  • 8,872
  • 12
  • 69
  • 83
1
vote
1 answer

Invoke AWS Lambda with Amazon SNS from Different Accounts?

I have an AWS account in which i have SNS topics. I have a different AWS account in which i have created a basic lambda function using this Now i want to trigger this lambda function using the SNS which i have in different account. What are the…
user6438693
1
vote
0 answers

Amazon sns push notifications

I have already installed this package https://github.com/aws/aws-sdk-php-laravel to send AMAZON SNS push notifications to mobile devices, but I am having troubles to configure it. I dont know where to find AWS_ACCESS_KEY_ID…
1
vote
0 answers

Push Notification for UWP using Amazon SNS

We are developing a Xamarin UWP app that is supposed to receive Push Notifications using WNS. We are using Amazon SNS to send notifications. We made sure that the app is registering itself with proper channel URI to our backend, package name of the…
cheran
  • 473
  • 1
  • 5
  • 11
1
vote
3 answers

Amazon SNS Client Can't publish to a topic

I had created the amazon sns client, provided the credential, set the region and create the publish message and use the publish method with it's attribute. it doesn't show any log or the exception and nothing happen on topic. Where i gone wrong?…
jagwar
  • 31
  • 6
1
vote
1 answer

Trigger lambda function with samlocal for SNS

I am new to SAM-Local and am trying to use it to trigger a Lambda function from an SNS topic. When I run SAM Local like this: sam local invoke -t sam.yaml ServiceNowIncidentCreator -e sns_event.json My Lambda function does not get triggered.. I only…
Darth.Vader
  • 5,079
  • 7
  • 50
  • 90
1
vote
1 answer

How can I get the full original request in Laravel?

I have a route that is set up to receive POST requests. This route is used to handle AWS SNS notifications. The controller isn't receiving any data when hit. SNS sends JSON in the request body, but I can't get that with $request->getContent();. To…
Mike
  • 8,767
  • 8
  • 49
  • 103