3

I have a big json payload of around 12K characters. AWS Eventbridge is not letting me create event as there is a payload limit of 8192 characters. How would I resolve this?

Thanks

2 Answers2

2

According to API doc, this is a hard limit on the API level. A workaround would be to split it into two targets.

jellycsc
  • 10,904
  • 2
  • 15
  • 32
1

Another way to handle larger payloads on Eventbridge would be to put the payload to S3 and pass a reference (bucket name + key) as the payload.

Yann Stoneman
  • 953
  • 11
  • 35