AWS API-Gateway communicating to SNS

后端 未结 7 760
暗喜
暗喜 2020-12-29 06:13

I am building an API which will be serviced by Lambda functions but I need these to be asynchronous so rather than connecting the API-Gateway directly to the Lambda function

7条回答
  •  囚心锁ツ
    2020-12-29 06:42

    I would do it like:

    WebApp --> Gateway --> Lambda ( Use Boto3 to publish in SNS ) --> SNS -->Lambda

    I think, things will be simpler.

提交回复
热议问题