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

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ