UNPKG

serverless

Version:

Serverless Framework - Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more

27 lines (22 loc) 383 B
service: aws-nodejs configValidationMode: error provider: name: aws runtime: nodejs12.x package: individually: true functions: hello: handler: handler.hello package: include: - handler.js exclude: - handler2.js hello2: handler: handler2.hello package: include: - handler2.js exclude: - handler.js