mirror of
https://github.com/cderche/greenlock-storage-s3
synced 2025-05-13 16:16:32 +00:00
19 lines
562 B
JavaScript
19 lines
562 B
JavaScript
require('../lib/node_loader');
|
|
var AWS = require('../lib/core');
|
|
var Service = AWS.Service;
|
|
var apiLoader = AWS.apiLoader;
|
|
|
|
apiLoader.services['athena'] = {};
|
|
AWS.Athena = Service.defineService('athena', ['2017-05-18']);
|
|
Object.defineProperty(apiLoader.services['athena'], '2017-05-18', {
|
|
get: function get() {
|
|
var model = require('../apis/athena-2017-05-18.min.json');
|
|
model.paginators = require('../apis/athena-2017-05-18.paginators.json').pagination;
|
|
return model;
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
|
|
module.exports = AWS.Athena;
|