We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e0de06 commit b75c592Copy full SHA for b75c592
src/connections/sources/catalog/cloud-apps/amazon-s3/index.md
@@ -93,6 +93,16 @@ var Objects = require('objects-node');
93
94
var analytics = new Analytics(process.env.write_key);
95
var objects = new Objects(process.env.write_key);
96
+
97
+// NOTE: if sending to an EU-based source, then the analytics and object SDKs
98
+// need to be initialized with the appropriate host name.
99
+// var analytics = new Analytics(process.env.write_key, {
100
+// host: "https://events.eu1.segmentapis.com"
101
+// });
102
+// var objects = new Objects(process.env.write_key, {
103
+// host: "http://objects.euw1.segment.com"
104
105
106
var s3 = new AWS.S3();
107
108
exports.handler = function(event, context, callback) {
0 commit comments