Skip to content

Commit

Permalink
Merge branch 'main' into chore-ec2-instance-types-2
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Mar 15, 2024
2 parents a95548a + 3d14b3b commit 00d9a99
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
"Arn"
]
},
"Runtime": "python3.9",
"Runtime": "python3.11",
"Timeout": 300
},
"DependsOn": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@
"Arn"
]
},
"Runtime": "python3.9",
"Runtime": "python3.11",
"Timeout": 300
},
"DependsOn": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@
"Arn"
]
},
"Runtime": "python3.9",
"Runtime": "python3.11",
"Timeout": 300
},
"DependsOn": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@
"Arn"
]
},
"Runtime": "python3.9",
"Runtime": "python3.11",
"Timeout": 300
},
"DependsOn": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@
"Arn"
]
},
"Runtime": "python3.9",
"Runtime": "python3.11",
"Timeout": 300
},
"DependsOn": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@
"Arn"
]
},
"Runtime": "python3.9",
"Runtime": "python3.11",
"Timeout": 300
},
"DependsOn": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@
"Arn"
]
},
"Runtime": "python3.9",
"Runtime": "python3.11",
"Timeout": 300
},
"DependsOn": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
"Arn"
]
},
"Runtime": "python3.9",
"Runtime": "python3.11",
"Timeout": 300
},
"DependsOn": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export class NotificationsResourceHandler extends Construct {
Code: { ZipFile: handlerSourceWithoutComments },
Handler: 'index.handler',
Role: this.role.roleArn,
Runtime: 'python3.9',
Runtime: 'python3.11',
Timeout: 300,
},
});
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-s3/test/notification.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ describe('notification', () => {
});

Template.fromStack(stack).hasResourceProperties('AWS::Lambda::Function', {
Runtime: 'python3.9',
Runtime: 'python3.11',
});
});
});

0 comments on commit 00d9a99

Please sign in to comment.