Try 12 AWS Serverless Microcredential planning questions on Lambda, EventBridge, API Gateway, Step Functions, SQS, DynamoDB, IAM, observability, resilience, cost, and safe deployment while formal public details are still being monitored.
Use this page if you are tracking AWS serverless credential updates and want an early self-check around production serverless decision-making.
This is an update-watch page. It is not an official AWS exam guide. Until formal public details are available, treat the model below as a practical preparation checklist for serverless design, operations, and troubleshooting.
Practice option: Update watch
Start with the 12 sample questions on this page. Dedicated practice for AWS Serverless Microcredential is not currently included as a full web-app practice page; enter your email to get updates when full practice becomes available or expands for this exam.
Need live practice now? See AWS DVA-C02 Developer Associate.
| Area | What to be ready to reason through |
|---|---|
| Event-driven design | Choose Lambda, EventBridge, SQS, SNS, Step Functions, and API Gateway for the right integration pattern. |
| Reliability | Handle retries, idempotency, dead-letter queues, timeout behavior, partial failures, and throttling. |
| Security | Scope IAM roles, secrets, network access, resource policies, and event-source permissions. |
| Observability | Use metrics, logs, traces, alarms, and correlation IDs for distributed serverless workflows. |
| Cost and performance | Tune memory, concurrency, payload size, storage, and workflow design without overbuilding. |
Try these 12 original AWS Serverless Microcredential planning questions. They are designed for self-assessment and are not official AWS exam questions.
Topic: idempotency
A Lambda function processes payment events from a queue. Occasionally the same event is delivered twice. What design choice best prevents duplicate charges?
Best answer: B
Explanation: Distributed event systems can retry or redeliver messages. Idempotency keys let the function recognize repeated events and avoid applying the same side effect twice.
Topic: orchestration
A workflow needs approval, a fraud check, payment capture, shipment creation, and compensation if shipment creation fails. Which service pattern best fits?
Best answer: C
Explanation: Multi-step business workflows need visible state, retry rules, and compensating actions. Step Functions is a better fit than hiding the process inside one opaque function.
Topic: asynchronous integration
A web API should accept a request quickly while slower downstream processing continues later. What is the best serverless pattern?
Best answer: B
Explanation: Queues and event buses decouple the user-facing request from slower work. This improves responsiveness and protects downstream systems during bursts.
Topic: least privilege
A Lambda function reads one DynamoDB table and writes logs. Which IAM approach is best?
Best answer: B
Explanation: Serverless functions should have narrowly scoped execution roles. Least privilege reduces blast radius and makes access easier to audit.
Topic: retries and dead-letter queues
A function triggered by a queue fails on malformed messages. The same bad message keeps blocking useful work. What should the team add?
Best answer: A
Explanation: Bad messages should be isolated for inspection instead of blocking the pipeline indefinitely. DLQs, failure destinations, validation, and alarms improve reliability.
Topic: concurrency control
A backend database is overloaded when thousands of events trigger functions at once. Which control helps most?
Best answer: C
Explanation: Serverless scaling can overwhelm downstream dependencies. Concurrency limits, buffers, and back-pressure protect bottleneck services while work continues safely.
Topic: API security
An API Gateway endpoint exposes customer data. Which control combination is most appropriate?
Best answer: A
Explanation: APIs that expose sensitive data need identity, authorization, input validation, abuse controls, and observability. Obscurity is not a security control.
Topic: observability
Users report intermittent errors across API Gateway, Lambda, and a downstream service. What should the team use to trace requests end to end?
Best answer: D
Explanation: Serverless applications are distributed. Correlation IDs and traces help connect symptoms across gateways, functions, queues, state machines, and dependencies.
Topic: event filtering
An EventBridge rule sends every event in an account to a function, but the function only needs order-cancelled events. What should change?
Best answer: B
Explanation: Filtering at the event bus reduces unnecessary invocations, cost, and noise. The function should not receive broad events it does not need.
Topic: cold-start trade-off
A latency-sensitive API has occasional cold-start delays. What is the best first response?
Best answer: A
Explanation: Cold-start mitigation depends on workload. Smaller packages, lighter initialization, memory tuning, and provisioned concurrency may help when latency requirements justify the cost.
Topic: deployment safety
A team deploys a new Lambda version and wants to limit customer impact if errors increase. What release pattern is best?
Best answer: C
Explanation: Gradual deployments with alarms and rollback reduce blast radius. Versioning and aliases make safe traffic shifting possible.
Topic: data storage fit
A serverless application needs low-latency key-value lookups with automatic scaling and event-driven processing. Which service pairing is most natural?
Best answer: A
Explanation: DynamoDB fits many serverless key-value access patterns, and streams can drive downstream processing when item changes matter.