我想创建一个 cloudwatch 规则,以在给定层次结构中的 SSM 参数更新时触发操作(在我的示例中,/config
层次结构中的任何内容)
如果我放置与参数全名匹配的规则,则操作会正确触发。
到目前为止,我尝试了以下方法:
{
"source": [
"aws.ssm"
],
"detail-type": [
"Parameter Store Change"
],
"detail": {
"name": [
"/config/",
"/config/*",
"/config/%"
],
"operation": [
"Update"
]
}
}
有没有办法实现这种行为?