- Newest
- Most votes
- Most comments
The dead-letter queue in the context of EventBridge refers to the SQS queue to which your EventBridge rule is set to deliver messages that it was unable to deliver to the target configured for the EventBridge rule: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-rule-event-delivery.html#eb-rule-dlq
The statement you quoted about it not having anything to do with SQS is somewhat ambiguous, but the fact (and what the writer might also mean) is that if the target for your EventBridge rule is an SQS queue, that target queue will have its own DLQ, separate from the DLQ of your EventBridge rule. The target queue's DLQ will receive messages that failed to be delivered onwards from the target queue, whereas the DLQ you configure for the EventBridge rule target will receive the messages that EventBridge couldn't deliver to the target queue.
Relevant content
- asked 8 months ago
- AWS OFFICIALUpdated 8 months ago
- AWS OFFICIALUpdated a year ago
Not the answer I was looking for...