我将嵌套堆栈与SAM一起使用,并且我有一个包含SNS资源和两个子代的父代堆栈,childStack1想将消息发布到SNS主题,childStack2想从同一个SNS上得到通知,但是如何我可以从childStack1 / 2 yaml或lambda访问共享的SNS主题吗?
ParentStack:
├── ChildStack1
|-------NestedFunction1
│-------template.yaml
├── ChildStack2
|-------NestedFunction2
|-------template.yaml
template.yaml <--this contains SNS resource
谢谢...