From 0b46a9985df028bb0445bd52df0708d6bc2dea98 Mon Sep 17 00:00:00 2001
From: cfarrugia <chris@yobetit.com>
Date: Wed, 2 Dec 2015 01:39:20 +0100
Subject: [PATCH] #113 Event Driven Architecture

Updated index.md with eda uses
---
 event-driven-architecture/index.md | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/event-driven-architecture/index.md b/event-driven-architecture/index.md
index 0a4be0bb6..f7b586c88 100644
--- a/event-driven-architecture/index.md
+++ b/event-driven-architecture/index.md
@@ -16,13 +16,10 @@ permalink: /patterns/event-driven-architecture
 
 **Real world examples:**
 
-* A Loan Application has been accepted/rejected (Commercial Business).
-* A new Rostering Schedule is ready for distribution to all crew (Airline Management System).
-* An Illegal Trade Pattern has been detected (Trading Fraud Detection System).
-* A simulated car has hits another simulated car (Commercial Racing Game).
-* A robot has reached its destination (Real Time Warehouse Management System).
-* A HTML message has been received (Web Server).
-* A key has been pressed (Text Editor).
+* SendGrid, an email API, sends events whenever an email is processed, delivered, opened etc... (https://sendgrid.com/docs/API_Reference/Webhooks/event.html)
+* Chargify, a billing API, exposes payment activity through various events (https://docs.chargify.com/api-events)
+* Amazon's AWS Lambda, lets you execute code in response to such as changes to Amazon S3 buckets, updates to an Amazon DynamoDB table, or custom events generated by your applications or devices. (https://aws.amazon.com/lambda)
+* MySQL runs triggers based on events such as inserts and update events happening on database tables.
 
 **Credits:**