service: some-aws-service
provider:
  name: aws
  runtime: nodejs16.x

org: testinteractivecli
app: some-aws-service-app

functions:
  normal:
    handler: index.handler
    events:
      - http:
          path: /foo
          method: GET
  shorthand:
    handler: index.handler
    events:
      - http: GET /bar
