AWS Just Rewrote the Rules for AI Certification
If you've been watching the AWS certification landscape, you've probably noticed something: it got a lot more AI-heavy in a hurry. Over the past year, AWS rolled out a trio of AI and machine learning certifications that cover everything from foundational AI concepts to building production generative AI applications on AWS infrastructure.
The three certifications form a clear progression:
- AWS Certified AI Practitioner -- the foundational starting point
- AWS Certified Machine Learning Engineer - Associate -- the mid-tier, operations-focused credential
- AWS Certified Generative AI Developer - Professional -- the newest and most advanced, targeting developers who build gen AI applications
Whether you're a cloud engineer looking to pivot into AI, a developer who's been experimenting with LLMs and wants to formalize your skills, or someone planning a long-term career in AI engineering, this guide breaks down all three exams, what they test, and how to prepare. For a broader look at the full AWS certification ecosystem, check out our AWS Certifications Roadmap for 2026.
The Three Certifications at a Glance
Here's a side-by-side comparison so you can quickly figure out which exam makes sense for where you are right now:
| Detail | AI Practitioner (Foundational) | ML Engineer - Associate | Gen AI Developer - Professional |
|---|---|---|---|
| Target audience | Anyone exploring AI/ML | ML engineers, data engineers | Developers building gen AI apps |
| Experience recommended | 6+ months AI/ML exposure | 1-2 years ML experience | 2+ years dev experience, 1+ year gen AI |
| Cost | $100 USD | $150 USD | $300 USD |
| Duration | 90 minutes | 170 minutes | 180 minutes |
| Questions | 65 | 65 | 85 |
| Format | Multiple choice / multiple response | Multiple choice / multiple response | Multiple choice / multiple response |
| Passing score | 700/1000 | 720/1000 | 750/1000 |
| Prerequisite | None | None (AI Practitioner recommended) | None (Associate recommended) |
No Hard Prerequisites
AWS doesn't enforce prerequisite exams for any of these. You could technically jump straight to the Professional-level Gen AI Developer exam if you have the experience. That said, the AI Practitioner is a solid confidence builder and only takes 90 minutes. Many people find it worth the $100 just to calibrate where their knowledge gaps are.
AWS Certified AI Practitioner: The Foundation
Who It's For
The AI Practitioner is designed for anyone -- not just developers -- who wants a solid understanding of AI and ML concepts in the context of AWS. Product managers, business analysts, solutions architects, and early-career engineers all benefit from this one. Think of it as the Cloud Practitioner equivalent for the AI world.
What It Tests
This exam is conceptual rather than hands-on. You won't be writing code or configuring services. Instead, you'll need to understand:
- AI/ML fundamentals -- Supervised vs. unsupervised learning, neural networks, training vs. inference, overfitting, bias-variance tradeoff
- Generative AI concepts -- How LLMs work, what transformers are, foundation models, prompt engineering basics, and the difference between fine-tuning and retrieval-augmented generation
- AWS AI services overview -- High-level understanding of Amazon Bedrock, SageMaker, Comprehend, Lex, Kendra, Rekognition, Textract, and Polly
- Responsible AI -- Fairness, transparency, bias detection, model governance, and AWS tools for responsible AI (like SageMaker Clarify)
Study Approach
Give yourself 2-3 weeks. The exam is broad but not deep. Focus on understanding concepts and knowing which AWS service solves which problem. AWS's own Skill Builder courses and the exam guide are your best starting resources.
AWS Certified Machine Learning Engineer - Associate
Who It's For
This one targets people who are building and operating ML systems -- not just understanding them conceptually. If you're a data engineer, ML engineer, or cloud engineer who works with ML pipelines, this is your exam. It sits between the foundational AI Practitioner and the specialized Gen AI Developer.
What It Tests
The ML Engineer exam is focused on the operational side of machine learning:
- Data engineering for ML -- Data ingestion, transformation, and feature engineering using services like S3, Glue, Kinesis, and Athena
- Model development -- Training models with SageMaker, selecting algorithms, hyperparameter tuning, and model evaluation metrics (precision, recall, F1, AUC)
- ML pipeline automation -- Building end-to-end pipelines with SageMaker Pipelines, Step Functions, and EventBridge for orchestration
- Model deployment and monitoring -- SageMaker endpoints, A/B testing, model monitoring, drift detection, and auto-scaling inference
- Security and governance -- IAM roles for ML workloads, VPC configurations for SageMaker, encryption, and compliance
SageMaker Is the Center of Gravity
If there's one service you need to know cold for this exam, it's Amazon SageMaker. Training jobs, processing jobs, pipelines, endpoints, model registry, experiments, Clarify, Data Wrangler -- SageMaker touches nearly every exam domain. Spend at least 40% of your study time here.
Study Approach
Plan for 4-6 weeks. You'll need hands-on experience with SageMaker -- reading documentation alone won't cut it. Set up a SageMaker notebook, run a training job, deploy an endpoint, and build a simple pipeline. The muscle memory matters.
AWS Certified Generative AI Developer - Professional: The Main Event
This is the certification everyone's been waiting for. Launched in late 2025, the Generative AI Developer - Professional is AWS's answer to the question "How do we validate that someone can actually build production gen AI applications?"
Who It's For
This exam is for developers and AI engineers who are building generative AI applications on AWS. Not conceptual. Not operational. Building. You're expected to write code, design architectures, and make real engineering decisions about things like which foundation model to use, how to implement RAG, and how to evaluate model output.
If you've been building with LangChain and vector databases and want to prove you can do it on AWS infrastructure specifically, this is the credential to chase.
What It Tests
The exam covers four domains:
Domain 1: Selection and Implementation of Foundation Models (28%)
- Choosing foundation models from Amazon Bedrock's model catalog (Anthropic Claude, Meta Llama, Amazon Titan, Stability AI, Cohere)
- Understanding model capabilities, context windows, pricing tradeoffs, and latency characteristics
- Fine-tuning vs. prompt engineering vs. RAG -- knowing when to use each approach
- Implementing model inference using the Bedrock API and SageMaker JumpStart
Domain 2: Building Gen AI Applications (32%)
- Designing RAG architectures using Amazon Bedrock Knowledge Bases, OpenSearch Serverless, Kendra, and S3 as data sources
- Implementing conversational AI with Bedrock Agents, Lambda functions for tool use, and Step Functions for orchestration
- Prompt engineering techniques: system prompts, few-shot learning, chain-of-thought reasoning, output parsing
- Application patterns: chatbots, code generation, document summarization, semantic search
Domain 3: Optimizing and Securing Gen AI Applications (26%)
- Model evaluation: building evaluation pipelines, human-in-the-loop review, automated metrics (BLEU, ROUGE, BERTScore)
- Cost optimization: caching strategies, model selection based on cost-performance, provisioned throughput vs. on-demand
- Security: IAM policies for Bedrock, VPC endpoints, data encryption, PII detection with Comprehend, guardrails
- Responsible AI: content filtering, toxicity detection, Bedrock Guardrails, bias mitigation
Domain 4: Troubleshooting and Monitoring (14%)
- Debugging inference issues, latency problems, and token limit errors
- CloudWatch metrics and logs for Bedrock and SageMaker
- Monitoring model performance degradation over time
- Error handling patterns for LLM applications (retries, fallbacks, graceful degradation)
Domain 2 Is Where Exams Are Won or Lost
At 32%, the application-building domain is the heaviest. This is where AWS tests whether you can actually architect a gen AI solution -- not just call an API. Expect scenario-based questions like: "A company wants to build a customer support chatbot that can access their product documentation and process returns. Which combination of services should they use?" You need to know how Bedrock, Lambda, Step Functions, Knowledge Bases, Kendra, and S3 all fit together.
Key AWS AI/ML Services You Need to Know
Across all three exams, certain services appear repeatedly. Here's the essential list with what you need to know about each:
Amazon Bedrock -- The fully managed service for accessing foundation models. This is the centerpiece of the Gen AI Developer exam. Know the model providers, the API (InvokeModel, Converse), Knowledge Bases for RAG, Agents for tool use, Guardrails for content filtering, and fine-tuning capabilities.
Amazon SageMaker -- The comprehensive ML platform. For the ML Engineer exam, go deep. For the Gen AI Developer exam, focus on SageMaker JumpStart (pre-trained model deployment), endpoints, and how SageMaker complements Bedrock.
AWS Lambda -- Serverless compute that powers tool use in Bedrock Agents. Know how to write Lambda functions that agents can invoke, handle input/output schemas, and manage permissions.
AWS Step Functions -- Orchestrates multi-step workflows. Used heavily in AI pipelines for chaining model invocations, data processing, human review steps, and conditional logic.
Amazon S3 -- The data backbone. Stores training data, documents for RAG ingestion, model artifacts, and evaluation datasets. Know S3 event notifications for triggering pipelines.
Amazon Kendra -- Enterprise search service powered by ML. Used as a retrieval source in RAG architectures. Know how it differs from OpenSearch Serverless (Kendra is higher-level, easier to set up; OpenSearch gives more control).
Amazon Lex -- Builds conversational interfaces (chatbots). Know how Lex integrates with Bedrock for more natural, LLM-powered conversations.
Amazon Comprehend -- NLP service for sentiment analysis, entity recognition, PII detection, and language detection. Often used as a preprocessing or post-processing step in gen AI pipelines for content safety.
Hands-On Skills That Matter
Passing these exams -- especially the Professional -- requires more than memorizing service names. Here are the practical skills you should build:
Prompt Engineering
Don't just read about it. Open the Bedrock console or use the API and experiment. Practice writing system prompts that constrain model behavior, build few-shot examples that guide output format, and test chain-of-thought prompting for complex reasoning tasks. Understand how different models respond differently to the same prompt.
RAG Implementation
Build a working RAG pipeline on AWS. Ingest documents into a Bedrock Knowledge Base backed by OpenSearch Serverless. Query it. Tune the chunking strategy. Experiment with different embedding models. Understand why chunk size and overlap matter for retrieval quality.
Model Evaluation
Set up a basic evaluation pipeline. Create a test dataset with expected answers. Run your model against it and measure performance with automated metrics. Understand the tradeoffs between automated evaluation (fast, scalable, noisy) and human evaluation (slow, expensive, accurate).
Responsible AI
Know how to configure Bedrock Guardrails to filter harmful content, detect PII, and enforce topic boundaries. Understand SageMaker Clarify for bias detection in training data and model predictions. The exams test this more than you might expect.
Your Study Timeline
Here's a realistic preparation plan depending on which certification you're targeting:
AI Practitioner: 2-3 Week Plan
| Week | Focus |
|---|---|
| Week 1 | AI/ML fundamentals, generative AI concepts, AWS AI services overview |
| Week 2 | Responsible AI, practice questions, review weak areas |
| Week 3 (optional) | Full practice exam, targeted review |
ML Engineer - Associate: 5-6 Week Plan
| Week | Focus |
|---|---|
| Week 1 | Data engineering for ML: S3, Glue, feature engineering |
| Week 2 | SageMaker deep dive: training, tuning, experiments |
| Week 3 | ML pipelines: SageMaker Pipelines, Step Functions, automation |
| Week 4 | Deployment and monitoring: endpoints, A/B testing, drift detection |
| Week 5 | Security, governance, and practice exams |
| Week 6 | Review weak areas, second practice exam |
Gen AI Developer - Professional: 6-8 Week Plan
| Week | Focus |
|---|---|
| Week 1 | Bedrock foundations: model catalog, API, InvokeModel, Converse API |
| Week 2 | RAG on AWS: Knowledge Bases, OpenSearch Serverless, Kendra, chunking strategies |
| Week 3 | Bedrock Agents: Lambda tool use, Step Functions orchestration, action groups |
| Week 4 | Prompt engineering deep dive, few-shot patterns, chain-of-thought, output parsing |
| Week 5 | Optimization and security: cost management, guardrails, IAM, VPC endpoints |
| Week 6 | Model evaluation pipelines, responsible AI, Clarify, monitoring with CloudWatch |
| Week 7 | Full practice exam, scenario-based question practice |
| Week 8 | Targeted review, second practice exam, exam-day prep |
Hands-On Time Is Non-Negotiable
For the ML Engineer and Gen AI Developer exams, spend at least 30% of your study time in the AWS console or writing code against AWS APIs. The scenario-based questions are designed to test real-world decision-making, and that's hard to fake without hands-on experience. Use the AWS Free Tier and Bedrock's on-demand pricing to keep costs low -- you can run meaningful experiments for under $20.
The Salary Impact of AI Certifications
Let's talk numbers, because that's what a lot of people are here for.
The data on AI certifications is still early since the AWS Gen AI Developer exam is relatively new, but the trends are clear:
- AWS-certified professionals earn 20-30% more on average than their non-certified peers, according to Global Knowledge's annual IT Skills and Salary Report
- AI and ML roles already command a significant premium, with median salaries of $160,000-$220,000 for mid-level positions in the US
- Generative AI specialization adds another layer. Roles specifically mentioning gen AI skills are posting at $180,000-$280,000+ for senior positions
- Certification stacking matters. Holding the Gen AI Developer Professional alongside a Solutions Architect Associate or DevOps Engineer Professional signals a rare combination: someone who can build AI applications and deploy them in production cloud environments
The biggest impact isn't necessarily the salary bump at your current job. It's the doors that open. Companies building gen AI products are actively searching for AWS-certified AI talent because it reduces their hiring risk. A certification tells them you've demonstrated competence against a standardized benchmark, not just listed "AI" as a skill on LinkedIn.
Certification as a Career Accelerator
The professionals who get the most value from certifications are those transitioning into AI roles. If you're a cloud engineer, backend developer, or data analyst looking to move into AI engineering, the AWS Gen AI Developer certification gives hiring managers a concrete reason to consider you for a role that might otherwise require prior AI job experience.
Study Resources Worth Your Time
Official AWS resources:
- AWS Skill Builder -- Free and paid courses mapped directly to exam objectives
- AWS exam prep courses on Skill Builder -- Practice question sets for each certification
- AWS documentation -- The Bedrock and SageMaker developer guides are essential reading
- AWS Workshops -- Free hands-on tutorials (search "Bedrock workshop" and "SageMaker workshop")
Third-party resources:
- Tutorials Dojo -- Known for high-quality AWS practice exams that closely mirror the real thing
- A Cloud Guru / Pluralsight -- Video courses with hands-on labs
- Whitepapers -- "Generative AI on AWS" and "Well-Architected Machine Learning Lens" are both worth reading
Hands-on practice:
- AWS Free Tier + Bedrock on-demand pricing for experimentation
- Build a RAG chatbot using Bedrock Knowledge Bases
- Deploy a foundation model endpoint using SageMaker JumpStart
- Create a Bedrock Agent with Lambda-based tools
Frequently Asked Questions
Should I start with the AI Practitioner or jump straight to the Professional?
It depends on your background. If you already have 1-2 years of experience building with LLMs and you're comfortable with AWS services, you can skip to the Professional. If AI/ML is newer to you, the AI Practitioner gives you a structured way to fill knowledge gaps -- especially around responsible AI and ML fundamentals, which do show up on the Professional exam. The $100 and 90 minutes for the AI Practitioner is a low-risk investment.
How hard is the Generative AI Developer - Professional exam compared to the Solutions Architect Professional?
Different kind of hard. The Solutions Architect Professional is famously broad -- it covers virtually every AWS service across networking, databases, compute, security, and more. The Gen AI Developer Professional is narrower but deeper. The questions assume strong familiarity with a smaller set of services (Bedrock, SageMaker, Lambda, Step Functions) and test your ability to make nuanced architectural decisions for AI-specific scenarios. Most candidates find the time pressure (85 questions in 180 minutes) challenging.
Do I need to know how to code for these exams?
For the AI Practitioner, no. For the ML Engineer and Gen AI Developer, you won't write code during the exam (it's all multiple choice), but you'll need to read and understand code snippets in Python and recognize correct API usage for services like Bedrock and SageMaker. If you can't look at a Bedrock InvokeModel call and understand what it does, you'll struggle.
Which foundation models should I focus on for the exam?
Know the models available through Amazon Bedrock -- particularly Anthropic Claude (text generation, reasoning), Amazon Titan (embeddings, text generation), Meta Llama (open-weight models), and Cohere (embeddings, reranking). You don't need to memorize model parameters, but you should understand the tradeoffs: cost, latency, context window size, and what each model family is best at.
How often do these exams get updated?
AWS typically updates certification exams every 2-3 years, but the AI certifications are newer and the field moves fast. Expect more frequent updates. The current versions are valid through at least mid-2027 based on AWS's published timelines. Always check the official exam guide on the AWS Certification page for the latest domain breakdown and objectives.
Is the Gen AI Developer certification worth it if I already have the Solutions Architect or Developer Associate?
Absolutely. The existing AWS certifications validate cloud infrastructure and application development skills, but they don't cover AI/ML in any depth. Adding the Gen AI Developer Professional signals that you can do both: build cloud-native applications and integrate generative AI into them. That combination is exactly what companies are hiring for right now.
Final Thoughts
The AWS AI certification track is still new enough that holding these credentials puts you ahead of the curve. That won't last forever -- as gen AI becomes standard practice, these certifications will become expected rather than differentiating. The window to stand out is now.
Pick the certification that matches your current experience level, commit to a study plan, and prioritize hands-on practice over passive study. The exams are testing whether you can build real things, not whether you can memorize service descriptions.
If you're serious about building AI-powered applications on AWS, the Generative AI Developer - Professional is the credential to aim for. Start with the AI Practitioner if you need a foundation, work through the ML Engineer if you want the operational perspective, and then tackle the Professional when you're ready to prove you can put it all together.
Want to practice this hands-on?
CloudaQube generates complete labs from a simple description. Try it free.
Get Started Free