Skip to main content
Exam Guides
🇺🇸 · 10 min read

AIF-C01 Exam Cheat Sheet: Complete Quick Reference for AWS AI Practitioner (2026)

The definitive AIF-C01 cheat sheet for 2026: every AWS AI service mapped to its use case, Bedrock component breakdown (Knowledge Bases, Agents, Guardrails, Flows), evaluation metrics, responsible AI vocabulary, and the 10 most common exam traps — all in one scannable reference. Review this the night before your exam.

AIF-C01 Exam Cheat Sheet: Complete Quick Reference for AWS AI Practitioner (2026)

This is the final-review cheat sheet for the AWS Certified AI Practitioner (AIF-C01). It is designed to be read the evening before your exam — a dense, scannable reference that hits every domain. It assumes you have already studied the material in depth. If something here feels unfamiliar, go back to the relevant deep dive. If everything feels familiar, you are ready. The exam is 65 questions in 90 minutes, passing score 700/1000. Let's make sure every point counts.

Domain Weights at a Glance

Domain Name Weight ~Qs
D1Fundamentals of AI and ML20%~13
D2Fundamentals of Generative AI24%~16
D3Applications of Foundation Models28%~18
D4Guidelines for Responsible AI14%~9
D5Security, Compliance, and Governance14%~9

Prioritization: D3 + D2 = 52% of the exam. Master Bedrock. Then D1 and D4/D5 become your point multipliers.

AWS AI Services: The Full Map

Use Case AWS Service Key Distinguisher
Foundation models (LLMs, diffusion)Amazon BedrockManaged API access to Claude, Titan, Llama, Mistral, Stability AI
Custom ML model training and deploymentAmazon SageMakerFull MLOps platform; code-required
Image and video analysisAmazon RekognitionObject detection, faces, content moderation, PPE, celebrity
NLP: sentiment, entities, PIIAmazon ComprehendComprehend Medical for clinical notes
Speech to textAmazon TranscribeSpeaker diarization; Transcribe Medical for HIPAA
Text to speechAmazon PollyNeural vs. standard voices; SSML support
Language translationAmazon Translate75+ language pairs; custom terminology
Structured conversational botsAmazon LexIntents + slots; rule-based dialogue flows
Document / form extractionAmazon TextractKey-value pairs, tables, layout from scanned docs
Personalized recommendationsAmazon PersonalizeBehavioral data → real-time recs; no ML experience needed
Time-series forecastingAmazon ForecastDeepAR, ARIMA, ETS auto-selection; related time series
Online fraud detectionAmazon Fraud DetectorPayment fraud, account takeover; uses your fraud history
Enterprise document searchAmazon KendraIntelligent search across internal docs; often used as data source for Bedrock Agents RAG
Bias detection + model explainabilitySageMaker ClarifySHAP values; pre/post-training bias metrics
Human-in-the-loop reviewAmazon Augmented AI (A2I)Route low-confidence predictions to human workers
Code generation + completionAmazon Q DeveloperIDE plugin for code suggestions; replaces CodeWhisperer
Enterprise AI assistantAmazon Q BusinessQ&A over internal company data; connects to SharePoint, Slack, S3

Amazon Bedrock: Every Component Explained

Domain 3 (28%) is almost entirely about Bedrock. Know every component and when to use it:

Bedrock Knowledge Bases

Connect your data (S3, Confluence, SharePoint) to a foundation model via RAG. Bedrock automatically embeds, chunks, indexes, and retrieves relevant documents at query time. Exam: the go-to answer when a scenario says "answer questions based on our internal documentation without fine-tuning."

Bedrock Agents

Orchestrate multi-step tasks by calling APIs (via Lambda action groups) and querying Knowledge Bases. The agent decides which tools to call and in what order to complete a goal. Multi-agent orchestration: a supervisor agent delegates subtasks to specialized sub-agents. Exam: answer for "take actions on behalf of the user" or "automate multi-step business workflows."

Bedrock Guardrails

Add safety controls to any Bedrock model: content filtering (hate speech, violence), topic restrictions (block off-topic requests), PII detection and masking, grounding check (reduce hallucinations by comparing output to source documents), word filters. Exam: answer for "prevent the model from answering questions about competitors" or "ensure the model does not reveal customer PII."

Bedrock Flows

Visual workflow builder (formerly "Prompt Flows") for chaining prompts, conditions, and data transformations into automated pipelines — without writing Lambda code. Think of it as low-code orchestration for GenAI workflows. Exam: answer when a scenario emphasizes "no-code" or "business analysts building workflows."

Bedrock Prompt Management

Version-controlled storage for prompt templates used across your Bedrock applications. Allows teams to manage, version, share, and audit prompts centrally. Exam: answer for "ensure prompt consistency across teams" or "audit which prompt version was used in production."

Bedrock Model Evaluation

Run automatic or human-based evaluation jobs to compare model responses across multiple foundation models. Generates reports with quality metrics. Exam: answer for "compare which Bedrock model best fits our use case before choosing one."

Bedrock Model Families (know the vendor and specialty)
  • Anthropic Claude — conversational, long context, safety-focused; default choice for complex NLU
  • Amazon Titan — AWS-built; Titan Text (generation), Titan Embeddings (RAG), Titan Image Generator
  • Meta Llama — open-weight; good for fine-tuning on custom tasks
  • Mistral AI — efficient, strong instruction following; cost-effective option
  • Stability AI — Stable Diffusion; image generation and editing
  • Cohere — embeddings and retrieval; often used for Bedrock Knowledge Bases embedding model

RAG vs. Fine-Tuning vs. Prompt Engineering

Approach When to Use Cost Data Freshness
Prompt Engineering Simple tasks, well-scoped queries, few-shot examples fit in context Lowest N/A
RAG (Knowledge Bases) Need up-to-date or proprietary knowledge; don't want to update the model Medium (retrieval + inference) High (docs updated anytime)
Fine-Tuning Consistent output format, domain-specific style, specialized vocabulary the base model lacks Highest (training + storage) Low (requires retraining)
Exam Trap: "A company needs the model to respond only in a specific JSON format for all outputs" → this is a fine-tuning use case (consistent output format), NOT a RAG use case. RAG adds external knowledge; fine-tuning changes model behavior.

Core ML Concepts Quick Reference

Supervised Learning Labeled training data. Examples: classification, regression.
Unsupervised Learning Unlabeled data, find patterns. Examples: clustering, dimensionality reduction.
Reinforcement Learning Agent + environment + rewards. Examples: game AI, robotics, ad bidding.
Self-supervised Learning Model creates its own labels (next-token prediction). How LLMs are pretrained.
Overfitting High train accuracy, low test accuracy. Fix: regularization, more data, simpler model.
Underfitting Low accuracy on both train and test. Fix: more complex model, more features.
Tokenization Breaking text into tokens (subwords). ~1 token ≈ 0.75 English words.
Embedding Dense numerical vector representing semantic meaning of text. Similar meanings → similar vectors.
Context Window Maximum tokens the model can process in one call (input + output).
Hallucination Model generates plausible but factually incorrect outputs. Mitigate with RAG + Guardrails grounding check.
Temperature Controls randomness. Low (0.0–0.3) → deterministic, factual. High (0.7–1.0) → creative, varied.
Top-P / Top-K Alternative sampling controls. Top-P: nucleus sampling by cumulative probability. Top-K: sample from top K tokens.
Zero-shot No examples in prompt; rely on model pre-training. Works when task is well-understood by the model.
Few-shot Provide 2–5 examples in prompt. Improves accuracy for specific formats or edge cases without fine-tuning.
Chain-of-Thought Prompt the model to reason step-by-step before answering. Improves complex reasoning accuracy.

Evaluation Metrics Card

Metric Optimizes For Use When
AccuracyOverall correctnessBalanced classes only
PrecisionMinimize false positivesSpam, ads, irrelevant alerts
RecallMinimize false negativesMedical diagnosis, fraud, security threats
F1 ScoreBalance precision + recallImbalanced classes with both types of errors
AUC-ROCThreshold-independent discriminationComparing classifiers regardless of threshold
RMSE / MAERegression error magnitudePrice prediction, forecasting
BLEUN-gram overlap with referenceTranslation quality evaluation
ROUGERecall-oriented n-gram overlapSummarization evaluation
BERTScoreSemantic similarity (not just surface matching)GenAI output quality; more nuanced than BLEU/ROUGE
PerplexityLanguage model confidenceLLM fluency — lower perplexity = more confident/coherent

Responsible AI Vocabulary

Bias (pre-training) Skew in training data that leads to unfair predictions (e.g., underrepresentation of demographic groups). Detected with SageMaker Clarify.
Bias (post-training) Disparate outcomes for different groups in deployed model. Also measured with Clarify after model evaluation.
Explainability Ability to understand why a model made a prediction. SageMaker Clarify uses SHAP values to assign feature importance.
Fairness Consistent outcomes across demographic groups (gender, race, age). Evaluated with equalized odds, demographic parity metrics.
AI Service Card AWS document describing the intended use, limitations, and responsible AI considerations of a specific AWS AI service (e.g., Rekognition, Transcribe). Published by AWS.
Model Card Documentation created by a model developer (you or a third party) describing training data, evaluation results, limitations, and intended use cases of a specific ML model.
Amazon Augmented AI (A2I) Route low-confidence AI predictions to human reviewers. Supports built-in workflows for Textract and Rekognition, or custom workflows.
Model Drift Degradation in model performance over time as real-world data distribution changes. Detected with SageMaker Model Monitor.
Transparency Users knowing when they are interacting with AI and understanding how decisions are made.

Security and Governance Reference

Shared Responsibility (AI) AWS secures the infrastructure and managed services. Customer secures data, access controls, prompt content, and output handling.
IAM for Bedrock Control which users/roles can invoke which Bedrock models or create Knowledge Bases. Use least-privilege IAM policies.
VPC Endpoints for Bedrock Keep Bedrock API calls within the AWS network — no data traverses the public internet.
Data Privacy in Training AWS does not use your data sent to Bedrock to train its models (opt-in model customization is separate). Your prompts are not shared with model providers.
AWS CloudTrail for AI Log all API calls to Bedrock, SageMaker, Rekognition for audit trail and compliance.
AWS Config Track configuration changes to AI resources for governance and compliance.
Bedrock Guardrails (security angle) Prevent prompt injection attacks; block sensitive topic disclosure; mask PII in model outputs.

Amazon Q: Developer vs. Business

Amazon Q appears increasingly as both answer option and distractor. Know the distinction cold:

Amazon Q Developer
  • AI-powered coding assistant
  • IDE plugin (VS Code, JetBrains)
  • Code completion, generation, security scanning
  • Explain and transform legacy code
  • Successor to Amazon CodeWhisperer
  • Target user: individual developers
Amazon Q Business
  • Enterprise AI assistant / chatbot
  • Connects to internal data (S3, SharePoint, Confluence, Slack, Salesforce)
  • Employees ask questions about company policies, procedures, data
  • Access controls: users only see data they're authorized to access
  • Target user: non-technical business users
Exam Trap: "A company wants employees to ask questions about internal HR policies and get answers from the company knowledge base" → Amazon Q Business (not Bedrock, not Q Developer). Q Business is the managed enterprise search + AI assistant product.

10 Most Common Exam Traps

  1. Rekognition vs. Textract for "text in images"
    Text in a natural scene (sign, label) → Rekognition. Structured text in a document/form → Textract.
  2. RAG vs. Fine-Tuning: "proprietary knowledge" vs. "consistent style"
    Access to internal/up-to-date documents → RAG (Bedrock Knowledge Bases). Consistent output format or specialized vocabulary baked into the model → fine-tuning.
  3. AI Service Card vs. Model Card
    AI Service Card = published by AWS for their pre-built services. Model Card = published by the model developer for a specific trained model.
  4. SageMaker Clarify vs. Bedrock Guardrails for "bias"
    Clarify detects bias in custom ML models during training and evaluation. Guardrails prevents harmful or off-topic model outputs at inference time.
  5. Amazon A2I vs. Bedrock Agents for "human review"
    A2I = route low-confidence ML predictions to a human workforce for review. Agents = autonomous multi-step task execution (no human in the loop by default).
  6. Amazon Lex vs. Amazon Bedrock for chatbots
    Lex = structured intent-based dialogue (book a flight, check account balance). Bedrock = open-ended generative AI conversations (any topic, long-form answers).
  7. Q Developer vs. Q Business
    Q Developer = developer tool for code generation. Q Business = enterprise assistant connecting to internal company data for all employees.
  8. Precision vs. Recall: read the cost of errors
    The scenario will tell you which error is more costly. "Missing a positive" (e.g., disease, fraud, security threat) → maximize Recall. "False alarm costs" (spam, unnecessary procedures) → maximize Precision.
  9. Bedrock Flows vs. Bedrock Agents
    Flows = visual low-code workflow builder for chaining prompts. Agents = autonomous LLM that calls tools (APIs) and reasons about multi-step tasks.
  10. Accuracy on imbalanced datasets
    A model with 99% accuracy on a 1% fraud dataset is detecting nothing. Always flag accuracy as misleading for imbalanced classes — use F1, Precision, Recall, or AUC-ROC instead.
Final check before your exam

Run one full 65-question practice exam on CertLand. Review every incorrect answer — not to memorize the answer, but to understand the reasoning. If you're scoring above 75%, you are in good shape for exam day. Good luck!

🏆 Lifetime Deal Pay once, use forever

Get lifetime access — one payment

Full access to 82,997+ questions, AI Coach, and every premium guide. No subscription, no renewals. Yours forever.

Lifetime access

one-time payment

vs subscription

$7.49/mo billed yearly

Lifetime saves you 10× over 5 years

82,997+ practice questions AI Coach + study plans All premium guides Future exams included No subscription ever

Comments

Sign in to leave a comment.

No comments yet. Be the first!

Comments are reviewed before publication.