Reputation: 468
I have implemented AWS EventBridge custom event and I want to test the rule is working.I use testing utility Of Event Bus as per the image. It said the event is successfully delivered. But I am not able to see in the target( in my case the target is Lambda)
I want to use the test utility to send the event in EventBridge
Upvotes: 1
Views: 895
Reputation: 766
Seems the payload you are using in the EVENT DETAIL area is wrong. The payload for that should NOT include source, resources etc. Just place the pure payload. In your case:
{
"name": "toyota",
"address": "test address",
"country": "uk"
}
If you like more on this, please check. This explains the rule, pattern, etc more clearly.
Upvotes: 1