Verified limit lookup

AWS Lambda Timeout Limit & Configuration

The current AWS Lambda maximum function timeout, how configured timeouts differ from the ceiling, and what to inspect before increasing it.

Verified Aug 22, 20261 official source
Quick answer

AWS Lambda's function timeout ceiling is 900 seconds (15 minutes). Each function can be configured lower, so the timeout that actually terminates an invocation is the function's current setting.

Verified Aug 22, 2026Official source

Current limits

ConstraintCurrent valueScopeVerified source
Function timeoutA function-level configuration ceiling; the configured timeout may be lower.900 seconds (15 minutes)Platform documentedAmazon Web ServicesAug 22, 2026

Why does this limit matter?

Increasing a timeout can hide slow dependencies or retry storms instead of fixing them.

Synchronous callers, API gateways, and SDK clients can have shorter timeouts than Lambda itself.

What should you check?

  1. Read the function's configured Timeout value, not only the service quota.
  2. Compare p95/p99 execution duration and upstream client timeouts.
  3. Add bounded network timeouts and preserve time for cleanup and retries.

Important caveats

  • The quota page's function limit is not the same as newer Lambda MicroVM execution limits.
  • Downstream service timeouts can terminate the user journey first.
HyperObserve reports the documented platform constraint. Your application, SDK, gateway, provider, region, or account can impose a lower effective limit.
Related

Related references and tools

Found an outdated limit? Report it.