使用针迹功能写入S3存储桶

时间:2018-08-20 06:33:25

标签: mongodb amazon-s3 mongodb-atlas mongodb-stitch

在MongoDB Atlas中,我想设置一个触发器,以便每当我将记录插入到特定集合(例如testCollection)时,它都会在S3存储桶中写入“ Hello”。

我能够成功设置触发器来调用Stitch函数。但是,此功能无法写入S3存储桶。我可以参考任何适当的文档,或者得到任何帮助吗?

顺便说一句,我尝试过

exports = function() { const s3 = context.services.get("aws").s3('us-west-2'); return s3.PutObject({ "Body": "Hello world!", "ContentType": "text/plain", "ACL": "public-read", "Bucket": "my-bucket-name", "Key": "test-object" }); };

文档中的

示例。它不起作用,或者我丢失了一些东西。 我登录了const s3 = context.services.get("aws"),日志中显示的内容是undefined

0 个答案:

没有答案