Event Bridge Rules to Filter Null fields

0

I am trying to filter payloads when a specific field is null (not empty string). I could not find any reference for the support of NOT condition in eb rules - with which I can write a condition e.g., [not {"fieldName": null}]

Would really appreciate if someone could help.

Anirban
已提问 1 个月前163 查看次数
2 回答
0

If you want events that the field is null, you should use "fieldName": [null].

If you want events that the field is not null, you should use "fieldName": [ { "anything-but": null } ].

profile pictureAWS
专家
Uri
已回答 1 个月前
  • Hi Uri, I am getting following error while trying this solution.

    Event pattern is not valid. Reason: Value of anything-but must be an array or single string/number value.

  • My bad, sorry. It seems there is no way of doing that. If the field has a known list of values, just include them in the filter.

0

Hello.

There is no "Not" filter, so why not try using "anything-but" instead?
I thought that by using "anything-but", it would be possible to express that "fieldName" is other than Null.
https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns-content-based-filtering.html#eb-filtering-anything-but

{"fieldName": [{"anything-but": null}]}
profile picture
专家
已回答 1 个月前
  • Hi Riku, thanks for adding. I do not thik anything-but supports null

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则

相关内容