UNPKG

581 BJavaScriptView Raw
1/* eslint-disable indent */
2'use strict';
3class Function {
4 constructor({ identifier, handler, runtime, timeout, codeUri, memorySize, envVars, initializer = undefined, initializationTimeout = undefined }) {
5 this.identifier = identifier;
6 this.handler = handler;
7 this.runtime = runtime;
8 this.timeout = timeout;
9 this.codeUri = codeUri;
10 this.memorySize = memorySize;
11 this.envVars = envVars;
12 this.initializer = initializer;
13 this.initializationTimeout = initializationTimeout;
14 }
15}
16module.exports = Function;