Crtv Nrd
Crtv Nrd

Reputation: 11

AWS Kinesis Data Stream to SQS

I need to send certain Kinesis Data Stream events to an SQS queue, but as far as I can tell, Kinesis Data Stream cannot directly populate a queue (KDS cannot be an event source for SQS as far as I can tell). Am I misunderstand here? Has anyone directly written KDS events to an SQS queue?

As far as I can tell, I only have two options:

  1. Intermediary Lambda that is triggered by the KDS, processes events, sends events to SQS
  2. Kinesis Firehose

Upvotes: 1

Views: 1165

Answers (1)

ggever
ggever

Reputation: 45

You can use Amazon EventBridge Pipes and configure Source as Kinesis Data Stream and Target as SQS

Upvotes: 0

Related Questions