gpt4 book ai didi

amazon-web-services - 使用图像响应卡时出现 AWS LexV2 CDK/CloudFormation 错误

转载 作者:行者123 更新时间:2023-12-03 07:33:45 28 4
gpt4 key购买 nike

我正在使用 AWS CDK 部署 Lex V2 机器人,并希望我的机器人具有用于引出插槽的按钮,但由于某种原因我收到错误:

DevBot Resource handler returned message: 

"Importing CDK-DevBot failed due to [There was an error importing the bot.
Make sure that the imported bot and contents of the zip file are correct, then try your request again.].
The import could not be completed."

(RequestToken: ebd3354f-6169-922a-d0f9-d14690671e25, HandlerErrorCode: InvalidRequest)

此错误信息不多。 CloudFormation 模板的相关部分:"Message"

"MessageGroupsList: [{
"Message": {
"ImageResponseCard": {
"Buttons": [
{
"Text": "1.0.3",
"Value": "1.0.3"
},
{
"Text": "1.0.5",
"Value": "1.0.5"
}
],
"Title": "Title"
},
"PlainTextMessage": {
"Value": "Please enter the issue number"
}
}
}]

如果我删除“ImageResponseCard”,那么它就可以正常部署。否则,我会收到错误。

有其他人遇到过这个问题并找到解决方法吗?

最佳答案

MessageGroupListMessage 元素的数组。每个元素必须具有不同类型的消息,可以是 ImageResponseCardPlainTextMessage。因此,在您的情况下,模板的结构不正确,应该是这样的:

{
"MessageGroupsList": [
{
"Message": {
"ImageResponseCard": {
"Buttons": [
{
"Text": "1.0.3",
"Value": "1.0.3"
},
{
"Text": "1.0.5",
"Value": "1.0.5"
}
],
"Title": "Title"
}
}
},
{
"Message": {
"PlainTextMessage": {
"Value": "Please enter the issue number"
}
}
}
]
}

假设 MessageGroupList 中缺少的勾号是一个拼写错误。

关于amazon-web-services - 使用图像响应卡时出现 AWS LexV2 CDK/CloudFormation 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71521955/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com