[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}
    events: ${file(./${env:DEPLOY_FILE_NAME}):events}
...

Alternatively, you can always define all resources and their actions using traditional CloudFormation format within serverless resources node.

5

solved serverless events are missing