This is the attribute and value which my pub/sub subscription will be expected to filter:
'objectId': 'event-notifications-test/_MANIFEST'
However, I am not concerned about the prefix of the value (event-notifications-test/) changing - I only want to filter the message from the topic if it contains '_MANIFEST'. If I was interested in the prefix, I expect I would need to use something like this:
hasPrefix(attributes.name, "co")
How can I filter the message based on the suffix of the value i.e. '_MANIFEST'?