Setting up an AWS EventBridge rule to catch Genesys Cloud interaction events, but the detailType filter is blocking everything. The docs say to use genesyscloud.interaction.event but the actual payload coming through has detailType set to genesyscloud.interaction.update. Tried matching on both but still getting no matches in CloudWatch. Here’s the rule config I’m using:
{
"source": ["genesys.cloud"],
"detail-type": ["genesyscloud.interaction.event"]
}
What’s the exact detailType string I need to whitelist?