@dazn/lambda-powertools-eventbridge-client
TypeScript icon, indicating that this package has built-in type declarations

1.28.1 • Public • Published

lambda-powertools-eventbridge-client

EventBridge client wrapper that knows how to forward correlation IDs (captured via @dazn/lambda-powertools-correlation-ids).

Main features:

  • auto-injects correlation IDs into the EventBridge events when you call putEvents

  • direct replacement for AWS.EventBridge client

Getting Started

Install from NPM: npm install @dazn/lambda-powertools-eventbridge-client

API

It's exactly the same as the EventBridge client from the AWS SDK.

const EventBridge = require('@dazn/lambda-powertools-eventbridge-client')

const publishEvents = async () => {
  const putEventsReq = {
    Entries: [
      {
        Source: "my-source",
        "Detail-Type": "my-type",
        Detail: JSON.stringify({ message: 'hello eventbridge' })
      },
      {
        Source: "my-source",
        "Detail-Type": "my-type",
        Detail: JSON.stringify({ message: 'hello lambda-powertools' })
      }
    ]
  }

  await EventBridge.putEvents(putEventsReq).promise()
}

Dependencies (2)

Dev Dependencies (1)

Package Sidebar

Install

npm i @dazn/lambda-powertools-eventbridge-client

Weekly Downloads

277

Version

1.28.1

License

MIT

Unpacked Size

11.1 kB

Total Files

7

Last publish

Collaborators

  • gideonparanoid
  • davidrv87
  • gabriela_nowicka
  • criveindazn
  • dazn.builder.frontend
  • automation-drone
  • m.bazalik
  • dazn.oss.lambda.powertools