微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何在无服务器中引用API网关端点?

如何解决如何在无服务器中引用API网关端点?

我正在使用serverless.yml作为基础。框架。我使用如下代码的API网关创建了一个lambda:

functions:
  create:
    handler: posts.create
    events:
      - http:
          path: posts/create
          method: post
          authorizer: xxx:xxx:Lambda-Name

它将为API网关生成一个端点。但是如何在yml文件中的其他位置引用此终结点?

解决方法

Ref: ApiGatewayRestApi-ApiGatewayRestApi是默认的Rest API逻辑ID。

How do I get/reference API gateway restAPI id in serverless.yml?

custom:
    webServiceEndpoint:
        Fn::Join:
          - ''
          - - 'https://'
            - Ref: ApiGatewayRestApi
            - '.execute-api.'
            - Ref: AWS::Region
            - '.amazonaws.com/'
            - ${self:provider.stage}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。