0.0.1 • Published 4 years ago

serverless-apigateway-eventbridge-proxy v0.0.1

Weekly downloads
4
License
ISC
Repository
github
Last release
4 years ago

Serverless Eventbridge Cross Organization


This Serverless Framewrok plugin supports the AWS EventBridge proxy integration feature of API Gateway.

Installation

Install the package with npm: npm install serverless-apigateway-eventbridge-proxy, and add it to your serverless.yml plugins list:

plugins:
  - serverless-apigateway-eventbridge-proxy

Usage

custom:
  apiGatewayEventbridgeProxies:
    - path: /eventbridge
      method: post
      source: 'hardcoded_source'
      detailType: 'hardcoded_detailType'
      eventBusName: 'default'

Sample request after deploying.

curl https://company/eventbridge?detailType=type -d '{"message": "some data"}'  -H 'Content-Type:application/json'