UNPKG

serverless

Version:

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

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