You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, Quamina has "shellstyle" patterns, while AWS event-ruler has "wildcard". With the landing of the recent PR to allow multiple * wildcards, the semantics should be identical. There is a difference: wildcard supports escaping with \ so you can match a literal *. Also \\ for literal `. All that's needed here is to build the \-escaping and then dispatch to the existing shellstyle code.
The text was updated successfully, but these errors were encountered:
Currently, Quamina has "shellstyle" patterns, while AWS event-ruler has "wildcard". With the landing of the recent PR to allow multiple
*
wildcards, the semantics should be identical. There is a difference: wildcard supports escaping with\
so you can match a literal*
. Also\\
for literal `. All that's needed here is to build the\
-escaping and then dispatch to the existing shellstyle code.The text was updated successfully, but these errors were encountered: