Skip to content

Commit d0d1dc9

Browse files
committed
Fix feature naming to use correct 'AWS Lambda durable functions' format
- Update README.md regional availability note to be more concise - Fix template.yaml description to use 'AWS Lambda durable functions' - Fix lambda_function.py docstring to use 'Lambda durable functions' - Ensure consistent lowercase 'durable functions' throughout
1 parent 6a2a751 commit d0d1dc9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lambda-durable-human-approval-sam/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This pattern demonstrates a human-in-the-loop approval workflow using AWS Lambda durable functions. The workflow pauses execution for up to 24 hours while waiting for human approval via email, automatically handling timeouts and resuming when decisions are received.
44

5-
**Important:** Lambda durable functions have limited regional availability. Please check the [AWS documentation](https://docs.aws.amazon.com/lambda/latest/dg/durable-functions.html) for current regional support.
5+
**Important:** Please check the [AWS documentation](https://docs.aws.amazon.com/lambda/latest/dg/durable-functions.html) for regions currently supported by AWS Lambda durable functions.
66

77
Learn more about this pattern at Serverless Land Patterns: https://serverlessland.com/patterns/lambda-durable-hitl-approval-sam
88

lambda-durable-human-approval-sam/src/lambda_function.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
@durable_execution
1414
def lambda_handler(event, context: DurableContext):
15-
"""Human-in-the-Loop Approval Pattern using Durable Functions"""
15+
"""Human-in-the-Loop Approval Pattern using Lambda durable functions"""
1616

1717
# Parse input
1818
body = event.get('body')

lambda-durable-human-approval-sam/template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
AWSTemplateFormatVersion: '2010-09-09'
22
Transform: AWS::Serverless-2016-10-31
3-
Description: Human-in-the-Loop Approval Pattern using Lambda Durable Functions
3+
Description: Human-in-the-Loop Approval Pattern using AWS Lambda durable functions
44

55
Parameters:
66
ApproverEmail:

0 commit comments

Comments
 (0)