Skip to content

Commit 795504a

Browse files
committed
Update Python pattern versions to latest
1 parent 44b98a0 commit 795504a

File tree

209 files changed

+282
-278
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

209 files changed

+282
-278
lines changed

activemq-lambda/template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Resources:
7373
Properties:
7474
CodeUri: mq_listener/
7575
Handler: app.lambda_handler
76-
Runtime: python3.9
76+
Runtime: python3.14
7777
Architectures:
7878
- x86_64
7979
Events:

alb-cognito-lambda/template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Resources:
6464
FunctionName: "ALBLambda"
6565
Description: An Application Load Balancer Lambda Target that returns regional metrics
6666
Handler: index.lambda_handler
67-
Runtime: python3.7
67+
Runtime: python3.14
6868
Role: !GetAtt "MyLambdaFunctionPermission.Arn"
6969
Layers:
7070
- !Ref LambdaLayerARN

alb-lambda-rest-api-sam-py/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ Note: ALB has no authentication or authorization and should only be used for dem
6666
6767
### SAM CLI for Local API Testing
6868
69-
The SAM CLI seamlessly extends the capabilities of the AWS CLI, introducing essential features for constructing and validating Lambda applications. Leveraging the power of Docker, it orchestrates the execution of functions within an Amazon Linux environment aligned with the Lambda runtime specifications, all sourced from [sam/build-python3.9](https://gallery.ecr.aws/sam/build-python3.9).
69+
The SAM CLI seamlessly extends the capabilities of the AWS CLI, introducing essential features for constructing and validating Lambda applications. Leveraging the power of Docker, it orchestrates the execution of functions within an Amazon Linux environment aligned with the Lambda runtime specifications.
70+
71+
7072
This emulation replicates the Lambda environment.
7173
7274
To simulate an ALB (Application Load Balancer) event, the CLI relies on the configuration stored in [event.json](./events/event.json). This file corresponds to an ALB event, and it is generated by the SAM command: `sam local generate-event alb request`.

alb-lambda-rest-api-sam-py/alb-lambda-rest-api-sam-py.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
},
3535
{
3636
"text": "AWS SAM build image for Python 3.9",
37-
"link": "https://gallery.ecr.aws/sam/build-python3.9"
37+
"link": "https://gallery.ecr.aws/sam/build-python3.14"
3838
},
3939
{
4040
"text": "Docker Desktop",

alb-lambda-rest-api-sam-py/example-pattern.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
},
3535
{
3636
"text": "AWS SAM build image for Python 3.9",
37-
"Link": "https://gallery.ecr.aws/sam/build-python3.9"
37+
"Link": "https://gallery.ecr.aws/sam/build-python3.14"
3838
},
3939
{
4040
"text": "Docker Desktop",

alb-lambda-rest-api-sam-py/template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Resources:
3434
Properties:
3535
CodeUri: .
3636
Handler: src.app.lambda_handler
37-
Runtime: python3.9
37+
Runtime: python3.14
3838
Architectures:
3939
- x86_64
4040
Policies:

ami-recycle-bin/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ variable "function_description" {
4848

4949
variable "function_runtime" {
5050
type = string
51-
default = "python3.12"
51+
default = "python3.14"
5252
description = "Identifier of the function's runtime"
5353
}
5454

amplify_cognito_apigateway_lambda_envvariables/template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Resources:
5353
Properties:
5454
CodeUri: lambdaExample/
5555
Handler: app.lambda_handler
56-
Runtime: python3.7
56+
Runtime: python3.14
5757
Events:
5858
EmyFunction:
5959
Type: Api

api-lambda-ses/template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Resources:
2727
- Arn
2828
MemorySize: 128
2929
Timeout: 5
30-
Runtime: python3.9
30+
Runtime: python3.14
3131
Environment:
3232
Variables:
3333
RECIPIENT: !Ref RECIPIENT

api-sqs-lambda-python/template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Resources:
3838
Description: Lambda to be invoked by the SQS Queue
3939
CodeUri: src/index.zip
4040
Handler: index.handler
41-
Runtime: python3.11
41+
Runtime: python3.14
4242
Architectures:
4343
- x86_64
4444
Timeout: 30

0 commit comments

Comments
 (0)