这个create function命令没有返回任何内容,甚至没有执行。下面是我的crate函数命令:
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"
发布于 2018-05-24 10:00:14
从zip-file值中删除一个额外的冒号
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之前检查您是否生成了正确的密钥
https://stackoverflow.com/questions/50495039
复制相似问题