惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
Blog — PlanetScale
Blog — PlanetScale
Vercel News
Vercel News
L
LangChain Blog
Google DeepMind News
Google DeepMind News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements
D
DataBreaches.Net
云风的 BLOG
云风的 BLOG
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
博客园_首页
N
Netflix TechBlog - Medium
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
美团技术团队
V
V2EX

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Developer Associate Exam Guide
Ntombizakhon · 2026-04-25 · via DEV Community

What Is the AWS Certified Developer – Associate?

The AWS Certified Developer – Associate (DVA-C02) validates your ability to develop, test, deploy, and debug cloud-based applications using AWS. It's aimed at developers with at least one year of hands-on experience building and maintaining AWS applications.

This isn't a theory-only exam. The questions are scenario-based. You'll be given a situation and asked to pick the best approach.

That means you need to understand not just what a service does, but when and how to use it in real code.


Exam Format

Detail Value
Exam code DVA-C02
Questions 65
Duration 130 minutes
Format Multiple choice + multiple select
Passing score 720 / 1000
Cost $150 USD
Validity 3 years

Multiple choice questions have one correct answer out of four.
Multiple select questions tell you how many answers to pick (usually two out of five).


The Four Domains

The exam is split into four domains, each with a different weight:

Domain Weight ~Questions
1. Development with AWS Services 32% ~21
2. Security 26% ~17
3. Deployment 24% ~16
4. Troubleshooting and Optimization 18% ~11

Development is the biggest chunk, but Security is close behind.
Don't sleep on Deployment.
Nearly a quarter of the exam is CI/CD, IaC, and deployment strategies.


Domain 1

Development with AWS Services

(32%)

This is the core of the exam.
You need to write code that works with AWS services, not just click through the console.

Task 1.1 Develop code for applications hosted on AWS

  • Architectural patterns: event-driven, microservices, fanout, choreography vs orchestration
  • Stateful vs stateless, tightly vs loosely coupled, sync vs async
  • Building and maintaining APIs with API Gateway
  • Writing unit tests with SAM
  • Using messaging services (SQS, SNS, EventBridge)
  • Working with AWS SDKs
  • Handling streaming data (Kinesis)
  • Resilient code: retry logic, circuit breakers, error handling

Task 1.2: Develop code for AWS Lambda

  • VPC access from Lambda
  • Configuration: memory, timeout, concurrency, layers, extensions, triggers, destinations
  • Error handling: DLQs, Lambda Destinations
  • Testing Lambda functions
  • Performance tuning
  • Real-time data processing

Task 1.3: Use data stores in application development

  • DynamoDB: partition keys, GSIs, LSIs, query vs scan, consistency models
  • Data serialization and persistence
  • Data lifecycle management (TTL)
  • Caching with ElastiCache and DAX
  • Specialized stores like OpenSearch

Domain 2

Security

(26%)

Security is woven into everything on this exam.
Expect questions that combine security with development scenarios.

Task 2.1: Implement authentication and authorization

  • Cognito User Pools and Identity Pools
  • JWT tokens and bearer token validation
  • IAM roles, policies, and STS AssumeRole
  • Lambda authorizers
  • Cross-service auth in microservices

Task 2.2: Implement encryption using AWS services

  • Encryption at rest vs in transit
  • KMS: key creation, rotation, cross-account access
  • Client-side vs server-side encryption
  • AWS Encryption SDK
  • Certificate management

Task 2.3: Manage sensitive data in application code

  • Secrets Manager vs SSM Parameter Store
  • Encrypting Lambda environment variables
  • Data classification (PII, PHI)
  • Data masking and sanitization
  • Multi-tenant data isolation

Domain 3

Deployment

(24%)

This domain is all about getting code from your machine to production safely and repeatably.

Task 3.1: Prepare application artifacts for deployment

  • Packaging Lambda functions with dependencies
  • Container images and ECR
  • AWS AppConfig for feature flags and configuration
  • Project structure for SAM/CloudFormation

Task 3.2: Test applications in development environments

  • SAM local testing
  • Integration tests against API Gateway stages
  • Mocking external dependencies
  • Testing event-driven applications

Task 3.3: Automate deployment testing

  • Test events for Lambda and API Gateway
  • Lambda aliases and versions
  • IaC templates (SAM, CloudFormation)
  • Environment management
  • Amazon Q Developer for test generation

Task 3.4: Deploy code using AWS CI/CD services

  • CodePipeline, CodeBuild, CodeDeploy
  • Deployment strategies: blue/green, canary, rolling
  • Rollback strategies
  • API Gateway stages and custom domains
  • Dynamic deployments with staging variables

Domain 4

Troubleshooting and Optimization

(18%)

The smallest domain, but the questions can be tricky because they require you to diagnose problems from logs and metrics.

Task 4.1: Assist in root cause analysis

  • Debugging code and interpreting error messages
  • CloudWatch Logs, metrics, and traces
  • CloudWatch Logs Insights queries
  • Custom metrics with Embedded Metric Format
  • Troubleshooting deployment failures

Task 4.2: Instrument code for observability

  • Logging vs monitoring vs observability
  • Structured logging with correlation IDs
  • X-Ray tracing: segments, subsegments, annotations
  • CloudWatch alarms and SNS notifications
  • Health checks and readiness probes

Task 4.3: Optimize applications

  • Lambda concurrency and performance tuning
  • CloudFront caching strategies
  • ElastiCache for application-level caching
  • SNS subscription filter policies
  • Identifying bottlenecks from logs and metrics

Key AWS Services to Know

Here's a quick reference of the services that come up most on this exam:

Compute: Lambda, EC2, ECS, Fargate, Elastic Beanstalk

API & Integration: API Gateway, EventBridge, Step Functions, SQS, SNS, Kinesis

Data: DynamoDB, S3, ElastiCache, DAX, RDS, OpenSearch

Security: IAM, Cognito, KMS, Secrets Manager, SSM Parameter Store, ACM

CI/CD: CodePipeline, CodeBuild, CodeDeploy, CloudFormation, SAM, AppConfig

Observability: CloudWatch (Logs, Metrics, Alarms, Dashboards), X-Ray, CloudTrail

Developer Tools: AWS SDK, AWS CLI, SAM CLI, Amazon Q Developer


How This Series Is Structured

Each article in this series maps directly to an exam task. We'll (You and I...and perhaps your AI Assistant, since that's how we do things these days) cover the concepts you need to know, then get hands-on with real code and CLI commands.

The goal is that by the end of the series, you've not only studied the material but you've built things with it...


Before You Start

Recommended experience:

  • At least 1 year developing and maintaining AWS applications
  • Comfortable with at least one programming language (Python, JavaScript/TypeScript, Java, C#, or Go)
  • Familiar with the AWS Console, CLI, and at least one AWS SDK

What you'll need to follow along:

1. An AWS account (free tier covers most of what we'll do)
2. AWS CLI v2 installed and configured
3. SAM CLI installed
4. A code editor (VS Code recommended)
5. Python 3.12+ or Node.js 20+ (we'll use both in examples)


Additional Resources

  1. AWS Certified Developer Associate Exam Guide
  2. AWS Certified Developer - Associate Exam Guide (DVA-C02)

🚀