Skip to content

Commit 8b4da6b

Browse files
committed
Review comments
1 parent 66ad618 commit 8b4da6b

File tree

7 files changed

+6
-79
lines changed

7 files changed

+6
-79
lines changed

lambda-endusermessaging/CODE_OF_CONDUCT.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

lambda-endusermessaging/CONTRIBUTING.md

Lines changed: 0 additions & 59 deletions
This file was deleted.

lambda-endusermessaging/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Amazon Lambda - End User Messaging
1+
# Sending SMS with AWS Lambda and AWS End User Messaging
22

3-
This sample pattern demonstrates how to send scheduled SMS messages using AWS Lambda and AWS End User Messaging. The solution uses EventBridge to trigger a Lambda function at a specified time each day, which then sends an SMS message to a configured phone number.
3+
This sample pattern demonstrates how to send scheduled SMS messages using AWS Lambda and AWS End User Messaging. The solution uses Amazon EventBridge to trigger a Lambda function at a specified time each day, which then sends an SMS message to a configured phone number.
44

55
Built with a serverless-first approach, this solution automatically sends messages at your preferred time each day.
66

@@ -24,7 +24,7 @@ The entire solution is built using AWS Cloud Development Kit (CDK) and AWS Lambd
2424

2525
* AWS Lambda
2626
* AWS End User Messaging SMS
27-
* AWS Secret Manager
27+
* AWS Secrets Manager
2828
* Amazon EventBridge
2929

3030
### Architecture Diagram

lambda-endusermessaging/example-pattern.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"title": "Lambda - End User Messaging",
3-
"description": "Scheduled SMS messaging using AWS Lambda and End User Messaging",
3+
"description": "Scheduled SMS messaging using AWS Lambda and AWS End User Messaging",
44
"language": "Python",
55
"level": "300",
6-
"framework": "CDK",
6+
"framework": "AWS CDK",
77
"introBox": {
88
"headline": "How it works",
99
"text": [
8.99 KB
Loading

lambda-endusermessaging/simple_sms_messaging/simple_sms_messaging_stack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def __init__(self, scope: Construct, construct_id: str, **kwargs) -> None:
5353
# Create SMS Sender Lambda Function
5454
sms_sender_function = _lambda.Function(
5555
self, "SmsSenderFunction",
56-
runtime=_lambda.Runtime.PYTHON_3_11,
56+
runtime=_lambda.Runtime.PYTHON_3_13,
5757
handler="send_sms.lambda_handler",
5858
code=_lambda.Code.from_asset("lambda/simple_sms_sender"),
5959
timeout=Duration.seconds(30),

lambda-endusermessaging/src/app.js

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)