1 · Basic RAG Pipeline Deep dive →
AWS services
Bedrock Knowledge Bases · S3 · OpenSearch Service · Titan Embeddings · Bedrock FM
Exam angle
Know every step. Know what can go wrong at each step. Know the chunking strategy tradeoffs (fixed / hierarchical / semantic). Know that "dynamic knowledge + grounded responses + citations" = this pattern, not fine-tuning.
2 · Advanced RAG with Hybrid Search + Reranking Deep dive →
Key additions vs. Basic RAG
OpenSearch hybrid search · Bedrock reranker models · custom scoring logic for fusion
Exam angle
Know when hybrid beats pure semantic: short queries, exact terminology, domain-specific jargon, names/codes. Pure semantic wins for long conceptual questions.
3 · Agentic Workflow (ReAct) Deep dive →
AWS services
Bedrock Agents · Action Groups (Lambda-backed) · Knowledge Bases · Guardrails · Step Functions (stopping conditions / timeouts)
Exam angle
Bedrock Agents (managed) vs. Strands Agents (open-source, more customizable). Exam prefers managed → Bedrock Agents. Know how to add human-in-the-loop via Step Functions callback pattern.
4 · Multi-Agent Orchestration Deep dive →
AWS services
AWS Agent Squad · Strands Agents · Bedrock Agents · Step Functions for orchestration
Exam angle
Multi-agent is appropriate for complex multi-domain tasks; overkill for single-purpose tasks where one agent suffices. If a question hints at overlap/coordination between different expertise areas, multi-agent wins.
5 · Model Cascading (Cost Optimization) Deep dive →
AWS services
Lambda (classifier) · API Gateway · Bedrock (multiple models) · Step Functions (routing logic) · CloudWatch (quality metrics)
Exam angle
Any question that says "reduce costs while maintaining quality" points here. Differentiates from simple routing because of the escalation step (quality gate + retry).
6 · GenAI Gateway (Enterprise) Deep dive →
AWS services
API Gateway · Lambda · Cognito · Bedrock Guardrails · CloudWatch · CloudTrail · Cost Explorer · AppConfig
Exam angle
Question mentions "multiple teams," "enterprise," "centralized control," "cost attribution," or "consistent governance" → GenAI Gateway.
7 · Event-Driven FM Processing Deep dive →
AWS services
EventBridge · Lambda · S3 Events · DynamoDB Streams · SQS · Bedrock · SNS
Exam angle
Decouple FM processing from user-facing requests. Async via SQS when FM latency is acceptable. If latency matters, use different pattern (streaming / sync).
8 · Streaming Chat Interface Deep dive →
AWS services
API Gateway (WebSocket API) · Lambda · Bedrock Streaming API (InvokeModelWithResponseStream) · DynamoDB (conversation history)
Exam angle
If the question describes a chat interface, streaming is the right answer. Know WebSocket (bidirectional, persistent) vs. SSE (one-way) vs. chunked HTTP tradeoffs.
9 · CI/CD for GenAI Applications Deep dive →
AWS services
CodePipeline · CodeBuild · CloudFormation / CDK · Bedrock Model Evaluations · CloudWatch Alarms
Exam angle
GenAI CI/CD includes prompt regression testing and guardrail validation — steps that don't exist in traditional CI/CD. If asked what's unique to GenAI CI/CD, these are the answers.
10 · Defense-in-Depth for FM Safety Deep dive →
AWS services per layer
7 layers, 7 service groupings. Each one maps to a domain of concern — know which service owns which layer.
Exam angle
Your CISSP/CCSP instinct maps directly. But watch the over-engineering trap — the exam wants the right level for the scenario, not max security. Don't add Lambda@Edge if Guardrails handles it natively.
Pattern selection matrix
Keyword → pattern. Use this as a memory aid during the exam.
| When you see… | Pattern |
|---|---|
| "answer questions from company docs" | 1 · Basic RAG |
| "retrieval quality isn't good enough" | 2 · Hybrid + Rerank |
| "agent that can take actions / call tools" | 3 · ReAct Agent |
| "specialized agents working together" | 4 · Multi-Agent |
| "reduce cost while maintaining quality" | 5 · Model Cascading |
| "multiple teams, central governance" | 6 · GenAI Gateway |
| "react to business events with AI" | 7 · Event-Driven FM |
| "chat interface, real-time responses" | 8 · Streaming Chat |
| "production deployment with testing" | 9 · CI/CD for GenAI |
| "any production FM security question" | 10 · Defense-in-Depth |