其他分享
首页 > 其他分享> > 使用Boto3为Lambda函数创建触发器

使用Boto3为Lambda函数创建触发器

作者:互联网

如何在Python中使用boto3为Lambda函数创建Alexa触发器?

解决方法:

对于可能不知道怎么做的任何人.

response = client.add_permission(
    FunctionName='<YOUR_FUNCTION_NAME>',
    StatementId='AlexaFunctionPermission',
    Action='lambda:InvokeFunction',
    Principal='alexa-appkit.amazon.com',)

标签:amazon-web-services,boto3,python
来源: https://codeday.me/bug/20191112/2024088.html