AWS lambda documentation change
Summary
Added durable functions documentation, standardized feature names (Layers/SnapStart/Extensions), and restructured content
Security assessment
Focus on feature explanations and naming consistency. No security features added or modified.
Diff
diff --git a/lambda/latest/dg/welcome.md b/lambda/latest/dg/welcome.md index 44076f95b..a4d5c9c55 100644 --- a//lambda/latest/dg/welcome.md +++ b//lambda/latest/dg/welcome.md @@ -7 +7 @@ -How Lambda worksKey featuresRelated information +Functions and durable functionsHow Lambda worksKey featuresRelated information @@ -39,0 +40,4 @@ For pricing information, see [AWS Lambda Pricing](https://aws.amazon.com/lambda/ +## Functions and durable functions + +[Lambda functions](./lambda-functions-chapter.html) run for up to 15 minutes and are ideal for event-driven tasks like processing API requests, handling file uploads, or responding to database changes. [Durable functions](./durable-functions.html) extend this model for workloads that need to run longer and survive interruptions. They can execute for up to one year, automatically checkpointing their progress so they resume reliably after failures. Use durable functions when you need multi-step workflows, human-in-the-loop approvals, or coordination across services over extended periods. + @@ -69 +73 @@ To learn how to build **serverless solutions** , check out the [Serverless Devel - * [Lambda layers](./chapter-layers.html) optimize code reuse and maintenance by sharing common components across multiple functions. + * [Layers](./chapter-layers.html) optimize code reuse and maintenance by sharing common components across multiple functions. @@ -80 +84 @@ To learn how to build **serverless solutions** , check out the [Serverless Devel - * [Lambda SnapStart](./snapstart.html) significantly reduce cold start times. Lambda SnapStart can provide as low as sub-second startup performance, typically with no changes to your function code. + * [SnapStart](./snapstart.html) significantly reduce cold start times. Lambda SnapStart can provide as low as sub-second startup performance, typically with no changes to your function code. @@ -97 +101 @@ To learn how to build **serverless solutions** , check out the [Serverless Devel - * [Lambda extensions](./lambda-extensions.html) augment functions with monitoring, security, and operational tools. + * [Extensions](./lambda-extensions.html) augment functions with monitoring, security, and operational tools. @@ -119 +123 @@ To use the Amazon Web Services Documentation, Javascript must be enabled. Please -How it works +Functions