我需要为已经存在的lambda函数设置配置一个设置,并与S3桶一起使用,这类似于AWS页面提供的示例:
http://docs.aws.amazon.com/lambda/latest/dg/with-s3-example.html
我正在使用的Lambda函数执行以下操作:
- notices new image in S3 location mybucket-test/images/in
- creates a .json file at the same S3 location - mybucket-test/images/in
- creates variations of the image at S3 location mybucket-test/images/out
我的任务是创建第二组S3输入/输出以使用相同的lambda函数。上面链接提供的AWS教程没有提到如何设置“调整大小”桶。 在完成教程后,我最终得到了Lambda函数的这种情况:
- lambda notices new image in S3 location wire-qa/images/in
- creates .json file at the expected location wire-qa/images/in
- creates variations of the image in S3 location mybucket-test/images/out INSTEAD OF placing them into wire-qa/images/out
在我看来,我有一些简单的东西,但我已经花了很多时间弄清楚它本身是什么。 我查看了各种各样的地方来配置Lambda函数以使用我的斗线-qa / images / out,以及mybucket-test / images / out。但到目前为止我还没有发现任何相关内容。 非常感谢这里的一些帮助。我至少想了解在AWS示例中,存储桶S3“调整大小”的位置设置为与Lambda一起使用。