Sends every new item in an RSS feed to an AWS EventBridge Event Bus
AWS EventBridge allows you to route events from AWS services to other AWS services using declarative rules. For example, every time you launch an EC2 instance, EventBridge can trigger a Lambda function.
You can also send your own events to EventBridge, using the PutEvents
Action. This allows you to route any events from any SaaS app to your AWS account so you can process them further.
This workflow shows you a trivial example of how this works: it runs every time a new item appears in an RSS feed, sending that to an EventBridge event bus you create in your AWS account. Then, you can create rules that route those events to your target service.
PutEvents
to EventBridge:{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": "events:PutEvents",
"Resource": "*"
}
]
}