亚马逊连接可以从lambda函数检索错误消息吗?

发布于 2025-01-18 12:08:16 字数 245 浏览 0 评论 0原文

是否可以从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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暗恋未遂 2025-01-25 12:08:16

同步调用返回错误时,Amazon Connect将重试3次,最多8秒。那时,流将下降到误差分支。

一个错误分支,这是您想要的吗?参见文档

When a synchronous invocation returns an error, Amazon Connect retries up to 3 times, for a maximum of 8 seconds. At that point, the flow will progress down the Error branch.

An Error branch, is this what you want? see document

浮萍、无处依 2025-01-25 12:08:16

是的,只需在响应中返回它,然后通过联系人属性访问即可。

Yes, just return it in the response and then access via contact attribute.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文