in lambda/Message_Archiver/archiver/lib/archiver.js [64:71]
parseS3FilePath(path) {
const uri = parse(path);
uri.pathname = decodeURIComponent(uri.pathname || '');
return {
bucket: uri.hostname,
key: uri.pathname.slice(1)
};
}