有没有一种方法可以向事件添加标签/作用域/任何自定义变量,然后从授权函数中将其取回?

时间:2019-07-24 06:37:22

标签: aws-lambda serverless-framework

我需要对我的API资源授权者应用不同的规则。 我可以创建多个授权者功能,但是一个简单的标记就足以保留一个授权者。

我尝试了这种语法:

functions:
  create:
    handler: posts.create
    events:
      - http:
          path: posts/create
          method: post
          authorizer: authorizerFunc
          tags:
            scope: one 
      - http:
          path: posts/update
          method: put
          authorizer: authorizerFunc
          tags:
            scope: two 
  authorizerFunc:
    handler: handler.authorizerFunc

但是我没有得到我的授权者event / context对象中的标签。 我已经看到scope的{​​{1}}字段,这与我要寻找的非常接近,但是我只想在我的授权函数中找回它。

您知道我可以用来将自定义变量添加到事件中的字段吗?

0 个答案:

没有答案