From 9341cfe280f32e5ce431e0e789825517a7e94d5b Mon Sep 17 00:00:00 2001 From: Brent Roady Date: Wed, 19 Jun 2024 11:03:14 -0500 Subject: [PATCH] Update Step3.en.md Python runtime given throws an exception when creating the lambda function (`InvalidParameterValueException`). Update to the new runtime version. --- content/design-patterns/ex8streams/Step3.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/design-patterns/ex8streams/Step3.en.md b/content/design-patterns/ex8streams/Step3.en.md index 35954dff..9695ac10 100644 --- a/content/design-patterns/ex8streams/Step3.en.md +++ b/content/design-patterns/ex8streams/Step3.en.md @@ -22,7 +22,7 @@ Now, run the following command to create the Lambda function. ```bash aws lambda create-function \ --function-name ddbreplica_lambda --zip-file fileb://ddbreplica_lambda.zip \ ---handler ddbreplica_lambda.lambda_handler --timeout 60 --runtime python3.7 \ +--handler ddbreplica_lambda.lambda_handler --timeout 60 --runtime python3.12 \ --description "Sample lambda function for dynamodb streams" \ --role $(cat ~/workshop/ddb-replication-role-arn.txt) ```