Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
181 views

Current Behavior An error occurs while using awslocal cloudformation deploy --template-file infrastructure.yaml --stack-name teststack on this infrastructure.yaml Parameters: Environment: ...
framilano's user avatar
  • 101
1 vote
1 answer
265 views

I'm new to AWS. I'm writing a lambda function in C# to monitor the failed delivery of SNS messages. I encountered an issue where the first parameter passed to the FunctionHandler is empty (not null, ...
Haiyu Hou's user avatar
0 votes
2 answers
1k views

I have implemented a Subscription Filter Policy in my test account in SNS to only send data coming in a particular subfolder in S3 to my SQS queue. This is working exactly as expected { "...
Asim's user avatar
  • 47
-1 votes
1 answer
624 views

Lambda not getting event details on s3 notification object create with SNS topic Lambda not getting event details on s3 notification object create with SNS topic I have created an AWS SNS topic and ...
Rushi's user avatar
  • 1
0 votes
0 answers
646 views

All, One of our vendor is moving to AWS from Azure we are now required to connect to their AWS SNS and read the messages from the Topic. We would like to use the same Azure Logic App we have been ...
Gopinath Rajee's user avatar
0 votes
1 answer
360 views

I required multiple lambdas to subscribe to s3 bucket events, this is not supported so the idea is to introduce the SNS instead. The flow will be S3Event -> SNS -> (X Number of LAMBDA consumers) ...
Pogrindis's user avatar
  • 8,336
0 votes
1 answer
418 views

I am trying to configure an custodian policy which will do some basic filtering and send the details of the match to specific user via mail(SNS). I can able to send the email to the user but I couldn'...
Ramesh Thiyagarajan's user avatar
1 vote
1 answer
987 views

I have problems assigning my sqs queue the correct policy so that any sns topic can send a message to it whenever this queue gets subscribed to it. I tried to use UpdatePolicy and Metadata in ...
zlZimon's user avatar
  • 2,657
2 votes
1 answer
185 views

Amazon provides documentation for verifying that SNS messages routed to an HTTP/HTTPS endpoint are valid. Using Vapor and Swift on the server, along with swift-certificates and swift-crypto, I ...
Ryan Burgoyne's user avatar
1 vote
0 answers
352 views

I want to subscribe my application's HTTP(S) endpoint to SNS. But my application restricts which IP addresses can make requests to it. Update: My application is running in AWS VPC and restricts IP ...
BlackLotus's user avatar
1 vote
2 answers
789 views

I have a very simply Lambda function: import boto3 def lambda_handler(event, context): snsTopicArn="arn:aws:sns:us-west-2:REDACTED:keiths-test-topic" snsClient = boto3.client('sns') ...
kcantrel's user avatar
  • 106
0 votes
2 answers
2k views

Working in .NET and I have some SQS Queues that are processing Application events around reports. At one point a report PDF is built and publishes report metadata such as location and ReportId to a ...
DVS's user avatar
  • 911
1 vote
1 answer
214 views

How do I add message retry policies in my SNS subscription? I read some documentation and I think it is the deliveryPolicy but how do I implement it in my cloudformation code below. ...
Muhammad Muiz Ather's user avatar
1 vote
1 answer
102 views

Trying to publish to an SNS topic with one or more attributes. Without attributes all works fine, but after adding an attribute we get a 400 response with bad request. below three ways we tried to add ...
Tilroy_Stefan's user avatar
1 vote
1 answer
774 views

Context I have 2 SNS both publishing messages with different data model. I want a lambda to get these messages and do some processing. Creating a SQS between the SNS and Lambda is mandatory. What i ...
Codemaster's user avatar
0 votes
0 answers
323 views

When I try to send a POST request via Postman for publishing a message to AWS SNS, I get a "400 Bad Request, the request cannot be fulfilled due to bad syntax". In the "publish" ...
Gilad's user avatar
  • 3
0 votes
1 answer
703 views

I have an AWS SES service with a sending rate of 100 mails per second. Our application sends emails to all students within educational institutes. There's a need to distribute a substantial volume of ...
Voldemort's user avatar
-1 votes
1 answer
554 views

This is my code for sending a message using Amazon SNS. It is working fine when I tried with Indian numbers but when I tried with American numbers it failed. I want to fix it. async sendMessage(testId:...
HARI KRISHNAN's user avatar
0 votes
1 answer
142 views

I'm attempting to setup an SMS Registration System with AWS Pinpoint and SNS. However, I can't get past the creation of the Lambda function following their instructions (example). I've followed the ...
Brokenstick's user avatar
0 votes
1 answer
166 views

I have a lambda function, which requires access to EC2 running on the private subnet of my VPC. So I associated the lambda with private subnet of the VPC. My lambda also need to publish to an SNS ...
Sree Teja's user avatar
1 vote
0 answers
108 views

We have an SNS having AWS Lambda as a target, and there's a DLQ associated with the SNS for handling Lambda throttling or other errors. We want to implement an automated retry system that resends the ...
R V's user avatar
  • 11
1 vote
1 answer
347 views

I am trying to create SNS topic in a specific region using cloudformation template. SNSTopic: Type: AWS::SNS::Topic Properties: FifoTopic: True TopicName: <topicname>.fifo ...
Lovika's user avatar
  • 617
0 votes
1 answer
67 views

I have to whitelist urls used in my application. AWS SNS notification messages contains few urls like signing, subscribe, unscubscribe. So I need to check whether or not AWS sns SigningCertURL changes ...
Pradip Patil's user avatar
0 votes
1 answer
150 views

I understand that Amazon SNS supports publishing messages in batch to SNS topics. I wonder that the same thing can be done for publishing SMSes to mobile numbers? My use case is to send out unique SMS ...
Shine's user avatar
  • 51
0 votes
1 answer
1k views

I wanted to update my sns target policy using terraform, below is my code. But my terraform plan is failing with below error. Expected the start of an expression, but found an invalid expression token....
iamsage's user avatar
  • 33

1 2
3
4 5
60