我试图在AWS lambda函数中使用boto3,以便对Lex聊天机器人执行post_text。
Python代码:
client = boto3.client('lex-runtime')
data = "string input"
response = client.post_text(
botName='xxx',
botAlias='yyy',
userId='id',
inputText= data)
但是我得到了
An error occurred (AccessDeniedException) when calling the PostText
operation: User: arn:aws:sts::111111111:assumed-
role/functionName/functionName is not authorized to perform: lex:PostText on
resource: arn:aws:lex:us-east-1:111111111:bot:xxx:yyyy"
因此,我设置了IAM规则和策略:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lex:PostText"
],
"Resource": [
"arn:aws:lex:us-east-1:111111111:bot:xxx:yyyy"
]
}
]
}
信任关系:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Service": "lambda.amazonaws.com"
},
"Action": "sts:AssumeRole"
}
]
}
但是它仍然不起作用,并且我得到相同的错误。
答案 0 :(得分:0)
我最近遇到了同样的问题。
这肯定与运行Lambda函数时分配给您正在使用的IAM角色的权限有关。
解决此问题的最简单方法如下:-
这将解决您的问题。