如何在AWS SQS中创建此事件过滤器
这是我当前JSON数据的真实数据结构,它首先包含[]
。
{"events":[{"type":"message","message":{"type":"text"}}]}
因此,基本上我只想从SQS进行短信类型数据,但是现在我不知道该过滤器是什么。
This is the real data structure of my current json data, it contains []
in the data in the first place.
{"events":[{"type":"message","message":{"type":"text"}}]}
So, basically I just want text message type data from SQS, but now I don't know what should the filter be.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在无服务器中使用YAML,我会尝试以下操作:
如果它有帮助,我也有类似的情况:在我的情况下,我只想在SQS消息的主体内部触发一个函数,该字段“类型” 在我的情况下,“有值”创建”或“ delete”}
,下一个代码可行:
If you are using yaml in serverless, I´d try this:
In case it helps, I had a similar scenario: in my case, I want a function to be triggered only when inside the body of the SQS message, the field "type" has values "create" or "delete"}
In my case, the next code worked: