此create function命令不返回任何内容,甚至不执行任何操作。这是我的crate function命令:
aws lambda create-function --function-name simple-function --runtime python3.5 --role my-role --handler simple-function.lambda_handler --region us-east-1 --zip-file "fileb:://test-handler.zip"
答案 0 :(得分:0)
从zip文件值中删除多余的冒号
aws lambda create-function --function-name simple-function --runtime python3.5 --role my-role --handler simple-function.lambda_handler --region us-east-1 --zip-file“ FILEB://test-handler.zip“
如果仍然无效,请在使用aws-cli
之前检查是否已生成正确的密钥