默认情况下,Lambda 控制台未使用 :live 别名打开函数
背景:我在最新的 lambda 代码中设置了 SQS 触发器。在 CFN 模板中,此属性设置为 AutoPublishAlias: live
问题 当我从控制台打开 Lambda 函数时,它不显示 UI 中附加的触发器。 但是,如果我导航到 SQS 并从那里打开触发器(使用 View in Lambda 选项),它会使用 :live
别名打开 lambda 函数,现在我可以看到扳机。
问题:我很困惑为什么默认 lambda($LATEST) 没有显示触发器?
Background: I have set a SQS trigger in the latest lambda code. In CFN template, this property is set AutoPublishAlias: live
Problem When I open Lambda function from the console, it doesn't show the trigger attached in UI.
However, if I navigate to SQS and open the trigger from there(using View in Lambda option), it opens the lambda function with :live
alias and now i can see the trigger.
Question: I am confused why default lambda($LATEST) is not showing the trigger?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,触发器不会显示在 lambda 函数主页/登陆页面上。它们显示在
别名
选项卡上。如果您想查看触发器,请执行以下操作:附截图。
Triggers are not shown by default on the lambda function homepage/landing page. They show up on the
Aliases
tab. If you want to see the triggers, do the following:live
aliasAttached screenshots.