first commit - lambda-durable-functions-nodejs-sam#2935
Open
aws-tam-sethums wants to merge 1 commit intoaws-samples:mainfrom
Open
first commit - lambda-durable-functions-nodejs-sam#2935aws-tam-sethums wants to merge 1 commit intoaws-samples:mainfrom
aws-tam-sethums wants to merge 1 commit intoaws-samples:mainfrom
Conversation
bfreiberg
requested changes
Feb 9, 2026
| { | ||
| "name": "nodejs-durable-order-processor", | ||
| "version": "1.0.0", | ||
| "description": "AWS Lambda Durable Functions - Node.js Orchestrator with structured logging and error handling", |
Contributor
There was a problem hiding this comment.
Suggested change
| "description": "AWS Lambda Durable Functions - Node.js Orchestrator with structured logging and error handling", | |
| "description": "AWS Lambda durable functions - Node.js orchestrator with structured logging and error handling", |
| @@ -0,0 +1,63 @@ | |||
| { | |||
| "title": "AWS Lambda Durable Functions with Node.js", | |||
Contributor
There was a problem hiding this comment.
Suggested change
| "title": "AWS Lambda Durable Functions with Node.js", | |
| "title": "AWS Lambda durable functions with Node.js", |
Contributor
There was a problem hiding this comment.
Please make sure to always use the correct capitalization
| @@ -0,0 +1,63 @@ | |||
| { | |||
| "title": "AWS Lambda Durable Functions with Node.js", | |||
| "description": "Demonstrates AWS Lambda Durable Functions using Node.js with automatic checkpointing, durable waits, and fault tolerance for long-running workflows.", | |||
Contributor
There was a problem hiding this comment.
Suggested change
| "description": "Demonstrates AWS Lambda Durable Functions using Node.js with automatic checkpointing, durable waits, and fault tolerance for long-running workflows.", | |
| "description": "Demonstrates AWS Lambda durable functions using Node.js with automatic checkpointing, durable waits, and fault tolerance for long-running workflows.", |
| }, | ||
| "cleanup": { | ||
| "text": [ | ||
| "Delete the stack: sam delete --stack-name durable-functions-demo" |
Contributor
There was a problem hiding this comment.
Suggested change
| "Delete the stack: sam delete --stack-name durable-functions-demo" | |
| "Delete the stack: <code>sam delete --stack-name durable-functions-demo</code>" |
| @@ -0,0 +1,279 @@ | |||
| # AWS Lambda Durable Functions with Node.js | |||
Contributor
There was a problem hiding this comment.
Suggested change
| # AWS Lambda Durable Functions with Node.js | |
| # AWS Lambda durable functions with Node.js |
Contributor
There was a problem hiding this comment.
Please make sure to always use the correct capitalization
| @@ -0,0 +1,112 @@ | |||
| AWSTemplateFormatVersion: '2010-09-09' | |||
| Transform: AWS::Serverless-2016-10-31 | |||
| Description: AWS Lambda Durable Functions - Node.js Order Processing Demo | |||
|
|
||
| Globals: | ||
| Function: | ||
| Runtime: nodejs22.x |
Contributor
There was a problem hiding this comment.
why not the latest runtime?
| Globals: | ||
| Function: | ||
| Runtime: nodejs22.x | ||
| Timeout: 900 |
Contributor
There was a problem hiding this comment.
Is such a long timeout necessary?
| Timeout: 900 | ||
| MemorySize: 512 | ||
| Architectures: | ||
| - x86_64 |
|
|
||
| Resources: | ||
| # IAM Role for Lambda Functions | ||
| LambdaDurableExecutionRole: |
Contributor
There was a problem hiding this comment.
These permissions are overly broad. Scope them to the relevant resources
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Issue #, if available:
Description of changes:
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.