我在 json 和 yml 文件中配置了一些 cloudwatch 警报。
可以像这样向 AlarmActions 添加多个引用吗?
Yml
AlarmActions:
- Ref: SNSTopicEmail
- Ref: SNSTopicEmail1
JSON
"AlarmActions": [
{
"Ref": "SNSTopicEmail"
},
{
"Ref": "SNSTopicEmail1"
}
]