2 Answers
0
Accepted Answer
- Yes, you will need some compute such as a Lambda function. The function will get the records from Kinesis and write them to EventBridge.
- You are correct, Lambda destinations are only available for asynchronous invocation and Kinesis is not asynchronous (it is called Event source mapping). You should write code in the function that iterates over the records in the payload and sends them to the bus using the EventBridge API.
Your architecture should look like: Kinesis -> Lambda -> EventBridge -> API Destination -> Salesforce.
0
Thank you Uri. That did it. Added code in lambda to push event to EventBridge. Thanks for the help.
answered 5 months ago
Relevant questions
How to convince EventBridge to pass S3 event information to an ecs target?
Accepted AnswerWhat are the pros/cons and use cases of using EventBridge, Lambda with queues, and SNS for event-driven architectures?
Accepted Answerasked 2 years agoEventBridge input transformation between salesforce event to target API?
asked 4 months agoEventBridge max EventBuses on event path
Accepted Answerasked 3 months agoEventBridge API Destination Connection Without Authentication
asked 6 months agoUnable to send event via EventBridge
asked 4 months agoLambda Events not triggering EventBridge destination
Accepted Answerasked 3 months agoEventBridge API Destination Connection AWS Secretes Manager Pricing
asked 6 months agoEventBridge + Kinesis
Accepted Answerasked 5 months agoHow to set up EventBridge Api Destination/Connection to Google Cloud?
asked 3 months ago