💾 Archived View for gmi.noulin.net › gitRepositories › git-off › file › src › node_modules › aws-sdk… captured on 2024-09-29 at 00:43:17. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-01-29)

-=-=-=-=-=-=-

git-off

Log

Files

Refs

README

swf.js (602B)

     1 require('../lib/node_loader');
     2 var AWS = require('../lib/core');
     3 var Service = require('../lib/service');
     4 var apiLoader = require('../lib/api_loader');
     5 
     6 apiLoader.services['swf'] = {};
     7 AWS.SWF = Service.defineService('swf', ['2012-01-25']);
     8 require('../lib/services/swf');
     9 Object.defineProperty(apiLoader.services['swf'], '2012-01-25', {
    10   get: function get() {
    11     var model = require('../apis/swf-2012-01-25.min.json');
    12     model.paginators = require('../apis/swf-2012-01-25.paginators.json').pagination;
    13     return model;
    14   },
    15   enumerable: true,
    16   configurable: true
    17 });
    18 
    19 module.exports = AWS.SWF;