gpt4 book ai didi

amazon-web-services - 如何使用 AWS CLI 创建 AWS Lambda 函数?

转载 作者:行者123 更新时间:2023-12-04 06:57:38 26 4
gpt4 key购买 nike

我正在尝试使用以下命令创建 AWS Lambda 函数

aws lambda create-function \
--function-name foo\
--runtime nodejs\
--role lambda_basic_execution \
--handler asdf --zip-file "fileb:://boom.zip"

我在目录中有一个名为 boom.zip 的文件。但我无法使用上述命令进行部署。

我得到的失败信息是

--zip-file must be a file with the fileb:// prefix.



有没有人有使用 AWS CLI 创建 lambda 函数的工作示例?

最佳答案

您在文件规范中有一个额外的冒号 ':'。

$ aws lambda create-function --function-name foo --runtime nodejs --role lambda_basic_execution --handler asdf --zip-file "fileb:://boom.zip"

--zip-file must be a file with the fileb:// prefix.
Example usage: --zip-file fileb://path/to/file.zip

$ aws lambda create-function --function-name foo --runtime nodejs --role lambda_basic_execution --handler asdf --zip-file "fileb://boom.zip"

Error parsing parameter '--zip-file': Unable to load paramfile fileb://boom.zip: [Errno 2] No such file or directory: 'boom.zip'

关于amazon-web-services - 如何使用 AWS CLI 创建 AWS Lambda 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34362805/

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