亚马逊连接可以从lambda函数检索错误消息吗?
是否可以从Amazon Connect中的lambda函数捕获抛出的错误消息?
示例lambda抛出错误:
exports.handler = async (event) => {
throw new Error('some error message')
};
我想在语音提示中使用错误消息,而不会捕获错误。
Is it possible to capture a thrown error message from a lambda function in Amazon Connect?
Example lambda throwing an error:
exports.handler = async (event) => {
throw new Error('some error message')
};
I would like to use the error message in a voice prompt, without catching the error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一个错误分支,这是您想要的吗?参见文档
An Error branch, is this what you want? see document
是的,只需在响应中返回它,然后通过联系人属性访问即可。
Yes, just return it in the response and then access via contact attribute.