(tags)
| 7 | const { parseTagXml } = s3middleware.tagging; |
| 8 | |
| 9 | function makeTagQuery(tags) { |
| 10 | return Object.entries(tags) |
| 11 | .map(i => i.join('=')) |
| 12 | .join('&'); |
| 13 | } |
| 14 | |
| 15 | function updateRequestContextsWithTags(request, requestContexts, apiMethod, log, cb) { |
| 16 | async.waterfall([ |
no outgoing calls
no test coverage detected