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
gefragt vor einem Monat163 Aufrufe
2 Antworten
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
EXPERTE
Uri
beantwortet vor einem Monat
  • 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
EXPERTE
beantwortet vor einem Monat
  • Hi Riku, thanks for adding. I do not thik anything-but supports null

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen