1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

AWS Lambda Python 3.9のサポート終了日(EOL)を確認したい

1
Last updated at Posted at 2025-10-10

はじめに

こんにちは。
インフラエンジニアをしているアリガです。
今回は、AWSでのLambda Python 3.9 ランタイムのEOLを確認する方法を見ていきたいと思います。

確認方法

Lambda Python 3.9 の「標準サポート終了日」については、2025年12月15日予定となり以下のページの表にまとめられています。
ドキュメントAWS LambdaデベロッパーガイドLambdaランタイム

2025年12月15日以降、LambdaはLambda関数が使用するPython 3.9ランタイムにセキュリティパッチやその他の更新を適用しなくなり、Python 3.9使用する関数はテクニカルサポートの対象外となります。
・2026年2月3日以降、Python 3.9ランタイムを使用して新しいLambda関数を作成することは出来なくなります。
・2026年3月9日以降、Python 3.9ランタイムを使用して既存の関数は更新出来なくなります。

image.png

Lambdaランタイム変更方法

Lambdaランタイムの変更方法はCLIとAWSコンソールからと色々あるようです。

■AWSコンソールからの変更方法は以下を参照します。
https://docs.aws.amazon.com/ja_jp/lambda/latest/dg/configuration-function-zip.html#configuration-function-runtime

image.png

■CLIから実施する場合は、update-function-configurationを利用します。
ランタイムを変更する場合は、--runtime オプションを使用します。
--function-nameは適宜読み替えて下さい。ランタイムはpython3.13にアップデートを試しました。
https://docs.aws.amazon.com/lambda/latest/api/API_UpdateFunctionConfiguration.html

▼ランタイム確認コマンド
aws lambda get-function-configuration --function-name update-function-test --query "{FunctionName:FunctionName, Runtime:Runtime}" --output table
▼ランタイムアップデートコマンド
aws lambda update-function-configuration --function-name update-function-test --runtime python3.13

image.png
image.png
image.png

参考情報

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?