我想使用GET/customer/{customerId}
请求的路径参数来使用 AWS Lambda 查询客户:
functions:
createCustomer:
handler: handler.createCustomer
events:
- http:
path: customer
method: post
readCustomer:
handler: handler.readCustomer
events:
- http:
path: customer
method: get
我必须如何定义路径参数才能使用无服务器框架 1.0将其传递给我的 AWS Lambda 函数?