gpt4 book ai didi

amazon-web-services - 亚马逊事件桥 : Match an object inside of an array

转载 作者:行者123 更新时间:2023-12-04 16:26:38 26 4
gpt4 key购买 nike

我在定义匹配我的事件的规则时遇到了问题。
谷歌搜索,测试。
假设我们有以下事件,其中包含对象 user在数组中 events :

{
"version": "0",
"...": "...",
"detail": {
"events": [
{
"user": {
"id": "5efdee60b48e7c1836078290"
}
}
]
}
}
有没有办法匹配 user.id在 EventBus 规则中?
我已经尝试使用以下无效规则:
{
"detail": {
"events": [
{
"user": {
"id": [
"5efdee60b48e7c1836078290"
]
}
}
]
}
}
然后,
{
"detail": {
"events[0]": {
"user": {
"id": [
"5efdee60b48e7c1836078290"
]
}
}
}
}
也没有效果。
我不想放弃,但我已经厌倦了;)

最佳答案

此模式应该可以匹配此事件:

{
"detail": {
"events": {
"user": {
"id": [
"5efdee60b48e7c1836078290"
]
}
}
}
}

关于amazon-web-services - 亚马逊事件桥 : Match an object inside of an array,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62708829/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com