2,985 questions
-2
votes
0
answers
26
views
can we push Amazon sns notification in bulk [closed]
When working with Amazon SNS to send push notifications to mobile devices, each device is normally represented by a ARN.
whether can we send a notification in bulk to many devices when the content is ...
0
votes
1
answer
42
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 ...
0
votes
0
answers
80
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
0
answers
33
views
AWS SNS Configuration Set
Trying to use the SNS Java API for text messaging.
PublishRequest publishRequest = PublishRequest.builder()
.message(message)
.phoneNumber(phoneNumber)
....
0
votes
1
answer
75
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
1
answer
40
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
0
answers
48
views
RDS events subscription to SNS for daily snapshot
I am trying to achieve the exports of automated or manual snapshots that are done daily for my RDS Cluster which has 2 instances for 2 separate regions.
I have a Lambda code(with according permissions)...
0
votes
0
answers
47
views
AWS Chatbot does not send a message to Slack when AWS Budget comes back to OK status
I configured an alert using AWS Chatbot/SNS/Budget when forecasted costs surpass a value. Chatbot sends a message to a Slack channel.
It works, but when the budget returns to OK status, Chatbot does ...
2
votes
0
answers
142
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
77
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'...
0
votes
0
answers
732
views
How Send the SMS using AWS End User Messaging
We have set up AWS End User Messaging on AWS for sending SMS. In this setup, we created a phone pool, a configuration set, and a protection configuration. However, I'm unsure how to use these settings ...
0
votes
0
answers
171
views
Solution to stop SQS consumption (on specific sqs) on all ECS Tasks before running a process, and start at the end
I’m looking for a design architecture to synchronize stopping SQS consumption across all ECS tasks when a process is running and start them at the end of process
I initially considered a design that ...
0
votes
0
answers
30
views
How do I report an error from AWS Lambda to my PHP app?
I have a PHP application that transfers images to AWS S3 Buckets. It uploads images to a temporary bucket, and a Lambda function triggers the creation of thumbnails in various dimensions, which are ...
0
votes
0
answers
359
views
Verifying Amazon SNS signatures in Python
I am struggling to get a successful signature validation when I send a test message through [email protected]. Below is my current relevant Python code after some trial and error. But ...
2
votes
1
answer
143
views
does SNS FIFO topic's message retries to SQS FIFO Queue in strict sequence?
We are working on one pub-sub architecture, where we want to use SNS for fan out to multiple SQS Queues. We have a requirement of strict sequence i.e. events should be in sequence for each clients.
...
2
votes
1
answer
100
views
Use Lambda to send alert to SNS Topic - but only send email once per unique body
I have an IoT workflow with various devices sending data to an S3 bucket, which triggers a Lambda. The Lambda processes the data and may trigger an alert (e.g. due to DeviceX having a temperature ...
-2
votes
2
answers
354
views
How to delete AWS SNS topics and SQS queues in bulk with AWS CLI by a pattern?
I have many topics and queues named in the same pattern. Now I need to delete them all in bulk using some pattern with a wildcard. The AWS CLI only allows deleting one by one. Same in the AWS Console -...
-1
votes
1
answer
98
views
CloudWatch Error: Rule JobFailureRule should be created in the scope of a Stack, but no Stack found
I have used below logic in CDK script for setting up Cloudwatch alarm and send SNS notification when there is failure in my glue job but when i tried to do npx synth then it throws error : Error: Rule ...
1
vote
0
answers
219
views
How to setup sns notification for cloudwatch alarm using CDK for AWS Glue job
I have below code for setting up alarm for AWS glue job using CDK:
import { aws_cloudwatch as cloudwatch, aws_events as events } from 'aws-cdk-lib';
// jobName. This is our AWS Glue script to monitor
...
0
votes
1
answer
243
views
I have a state machine in stepfunction. I need to get notified whether the state machine successfully completed or not with the help of sns.how to do?
I have a multiple start job run in Awa stepfunction state machine. I need to get notified about the status of state machine , whether it is completed successfully or not with the help of sns publish. ...
1
vote
0
answers
101
views
Push Notification delivery failure with SNS and Firebase Cloud Messaging (FCM) endpoint
I'm testing the delivery failure rates of SNS with Firebase Cloud Messaging (FCM) endpoint. Initially, I put the app in the background and sent 10 notifications. Although SNS acknowledged all 10 ...
0
votes
0
answers
1k
views
How to configure AWS::SNS::Topic ArchivePolicy?
Using CloudFormation, I'm trying to deploy an SNS topic with an ArchivePolicy of 90 days. From the AWS docs, this Property is "Type: Json" but I can find no reference to its structure. I did ...
0
votes
0
answers
29
views
Re-publish message to the same queue in MassTransit
I use masstransit 8 + amazon sqs/sns, the app is running in Windows Docker container.
My consumer is processing message by scheduled time it can be up to few hours. Due to sqs limitation max delay ...
0
votes
1
answer
227
views
Amazon Connect Email addresses
My problem is right now i have an inbound voice and chat flows on my Amazon connect.
The problem is that i want to create an email diagram flow that will be connected to the voice and chat flow so ...
4
votes
2
answers
1k
views
How to Send AWS Chatbot Notifications Only to Slack Thread Without Posting in Channel?
I am using AWS chatbot and want to group similar messages in a thread. like this:
aws sns publish --topic-arn "${AWS_SNS_TOPIC_ARN}" --message '{
"version": "1.0",...