douzhi6365 2019-06-14 03:14
浏览 45
已采纳

如何在Go中创建AWS Lambda以处理多个事件

I need to implement the AWS Lambda handler to handle AWS S3Events & SNSEvent, any solution?

Already I checked this answer, How to support more than one trigger in AWS Lambda in Golang?

But that's doesn't work for me.

  • 写回答

1条回答 默认 最新

  • dsfs504545 2019-06-14 03:22
    关注

    According to this document you could hanlde your custom event. So you can create custom event which includes S3Entity and SNSEntity

    type Record struct {
       EventVersion         string           `json:"EventVersion"`
       EventSubscriptionArn string           `json:"EventSubscriptionArn"`
       EventSource          string           `json:"EventSource"`
       SNS                  events.SNSEntity `json:"Sns"`
       S3                   events.S3Entity  `json:"s3"`
    }
    
    type Event struct {
        Records []Record `json:"Records"`
    }
    

    Then check the EventSource

    func handler(event Event) error {
       if len(event.Records) > 0 {
        if event.Records[0].EventSource == "aws:sns" {
           //Do Something
        } else {
           //Do Something
        }
      }
    
      return nil
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部