-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy paths3-select.ts
40 lines (38 loc) · 1.18 KB
/
s3-select.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import * as S3 from '../clients/s3';
const s3 = new S3({
region: 'us-west-2'
});
function test1() {
s3.selectObjectContent({
Bucket: 'foo',
Expression: 'select * from s3object',
ExpressionType: 'SQL',
Key: 'bar.gz',
InputSerialization: {
},
OutputSerialization: {}
}, function(err, data) {
if (err) {
console.log(err);
} else {
// data.Payload will be an array in browsers/node.js 0.8
if (Array.isArray(data.Payload)) {
data.Payload.map(function(event) {
if (event.Stats) {
console.log(event.Stats.Details);
} else if (event.Records) {
event.Records.Payload;
}
});
} else {
// data.Payload will be a readable stream in node.js 0.10+
data.Payload!.on('data', function(event) {
if (event.Stats) {
console.log(event.Stats.Details);
}
});
data.Payload!.on('end', function() {});
}
}
});
}