How should I properly to debug an EventBridge rule that isn’t firing for conversation.update events?
- Deployed rule via Pulumi TS with
source: 'genesys.cloud'anddetail-type: 'ConversationUpdate'. - Injected test event via
aws.events.put_events(). - Rule remains inactive despite logs showing the event was received by EventBridge.
Pattern below. Am I missing a namespace qualifier?
{
"source": ["genesys.cloud"],
"detail-type": ["ConversationUpdate"],
"detail": {
"eventSource": ["conversations"]
}
}