[Solved] serverless events are missing

You need to add events to your functions. Have a read through the serverless documentation for events. Currently serverless supports lambdas to be invoked by API GateWay, Kinesis, DynamoDB, S3, Schedule, SNS, and Alexa Skill. (read more) So in this case, adding a required events tag should solve your problem. … functions: smartHome: handler: ${file(./${env:DEPLOY_FILE_NAME_STAGE}):handler} … Read more