# Hello World for AWS Lambda
service: hello-world # Service Name

provider:
  name: aws
  runtime: python2.7

functions:
  helloWorld:
    handler: handler.helloWorldHandler
