Amazon Lex — Chatbot / Voice Bot Engine

Same technology that powers Alexa.

Combines two things:

User says: "I want to book an appointment for Friday"
     |
  Lex understands intent: BOOK_APPOINTMENT, date: Friday
     |
  Triggers next action (Lambda, API, database)

Used for: Building chatbots, IVR bots, call center automation.


Amazon Connect — Virtual Contact Center

Cloud-based contact center service. Receive calls, create contact flows, route customers — no physical hardware needed.

How They Work Together — Real Example

Customer calls to schedule an appointment
        |
   Amazon Connect  (receives the call)
        |
   Amazon Lex      (understands what caller wants)
        |
   Lambda          (processes the booking logic)
        |
   CRM / Database  (appointment saved)

Connect handles the call, Lex understands the intent, Lambda takes action.


Exam One-Liners