2,977 questions
1
vote
1
answer
63
views
How to configure email alerts for Service Control Policy (SCP) changes in AWS?
I want to configure alerts in AWS so that I receive an email notification whenever a Service Control Policy (SCP) is modified.
Specifically, I want to be notified when any of the following actions ...
0
votes
0
answers
83
views
AWS SES Complaint events are not received for GMAIL users
I want to handle user complaints by performing some business actions when such complaints occurre. I also want to differentiate email campaign by custom tags since I send quite a lot of different ...
0
votes
1
answer
30
views
Customising incorrect and broken domain from amplify's build notification on sns
We've a 3 envs for our amplify project, one of being dev, from the branch dev/main, but, the actual domain it's for / that we're interested in is https://dev.seaders.com. The notification that comes ...
0
votes
1
answer
59
views
Unable to integrate JIRA automation with AWS SNS FIFO Topic
I’m currently unable to integrate JIRA Automation with my AWS SNS FIFO topic. Previously, the integration worked fine when using a standard SNS topic. However, after switching to a FIFO topic, the ...
1
vote
0
answers
41
views
Firing a lambda on an SNS topic across regions and accounts
We believe that we have configured a lambda to be invoked from an SNS topic. The topic belongs to Someone Else's account, and lives in eu-west-1. The lambda lives in our account, and lives in us-east-...
0
votes
0
answers
106
views
Issue with SNS subscriptions
I wanted to mention a (supposed) issue with AWS SQS. The logic is simple: an SNS topic that has a subscription to a queue. It works with one way of creating it and not with others. The fact is that ...
0
votes
1
answer
79
views
Terraform Error with AWS S3 Notification emit to SNS Topic
I have an S3 bucket, image_bucket, and a topic, image_changes_topic. I want the S3 bucket to notify the image_changes_topic whenever an object is created in the S3 bucket. This is the terraform that I ...
0
votes
1
answer
88
views
I'm trying to use SES, SNS and SQS
I'm trying to use SQS, SNS, and SES. In this case, when I send an email, I can see through SQS that it has been delivered successfully. However, I would also like to receive data when the email is ...
0
votes
0
answers
355
views
terraform - cross account sns sqs subscription fails on pending confirmation
Im trying to subscribe my sqs queue from account A to sns topic in account B but my sqs to sns subscription is failing on terraform apply after 2 minutes because its not able to auto confirm the ...
0
votes
1
answer
56
views
SNS sending CreateTopicCommand I got Invalid parameter: DataProtectionPolicy Reason: Failed to parse the data protection policy
I created on aws a "Push notification platform - Apple iOS (development)"
I am just trying to create a new endpoint from AWS SDK JS v3
const deviceId = 'a0b1c2d3e4f5' // would be a real ...
0
votes
2
answers
235
views
AWS ElastiCache SNS notifications Inactive
I configured my ElastiCache Redis replication group to send notifications to a SNS topic.
The SNS topic is encrypted with a custom KMS key.
But I'm not receiving any notification. Checking the Redis ...
-1
votes
1
answer
307
views
How can I pass the instance id to Lambda function
I'm developing a workflow in AWS. The scenario is: whenever I get a suspicious log entry in a log group like lot's of 403 errors. I want the instance to be isolated from the environment. Currently the ...
0
votes
1
answer
216
views
Sending AWS SNS notification to dynamic email address
I have an SNS topic to which a lambda is sending messages. The specific message contains the email address to which this message should be sent from SNS. Can I create an email topic subscriber in a ...
2
votes
0
answers
188
views
Multiple SNS Subscriptions To Same Endpoint with Different Subscription Filter Policies
I am working on a project where I manage JSON schemas that contain metadata used for notification emails. My goal is to dynamically create AWS SNS Subscriptions and configure their Subscription Policy ...
1
vote
0
answers
92
views
How to add custom header when calling to APNS when using AWS SNS?
I want to send time-sensitive notification to iOS, using AWS SNS.
Per Apple's doc, I need to add apns-priority and apns-expiration to the request header. The problem is I am using AWS SNS and I haven'...