serverless/test/fixtures/httpApi/serverless.yml
2020-09-02 13:04:59 +02:00

28 lines
486 B
YAML

service: service
configValidationMode: error
frameworkVersion: '*'
provider:
name: aws
logRetentionInDays: 14
functions:
foo:
handler: index.handler
# provisionedConcurrency: 1 # Increases significantly test time
events:
- httpApi:
method: GET
path: /foo
- httpApi:
method: POST
path: /some-post
other:
handler: index.handler
events:
- httpApi:
method: get
path: /bar/{marko}