Why doesn't cloudformation support ZipFile inline code option for Python lambdas

0

The documentation for the ZipFile field in the AWS::Lambda::Function CloudFormation structure says that nodejs and Python are both supported. Copying the sample code for nodejs runtimes works just fine, but if you switch the Runtime to any Python runtime (Python3.7 up to Python3.11), the stack creation fails with:

Resource handler returned message: "Invalid request provided: The ZipFile attribute is not supported for the runtime 'Python3.7'" (RequestToken: <redacted>), HandlerErrorCode: InvalidRequest)

Is this an issue with the documentation (and Python runtimes no longer support inline ZipFile) or is there a defect in the CloudFormation process?

AWSTemplateFormatVersion: '2010-09-09'
Resources:
  primer:
      Type: AWS::Lambda::Function
      Properties:
        # Putting nodes18.x (instead of Python3.7, Python3.8, etc.) here works just fine..
        Runtime: Python3.7
        Role: !Sub "arn:aws:iam::${AWS::AccountId}:role/My_Role"
        Handler: index.handler
        Code:
          ZipFile: |
            def handler(event, context):
              return {'statusCode': 200, 'body': 'OK'}
        Description: List Amazon S3 buckets in us-east-1.
        TracingConfig:
          Mode: Active
質問済み 2ヶ月前371ビュー
1回答
2
承認された回答

Hi there,

You might have a typo , you have Python3.7 also python3.7 is no longer supported, to view the supported run-times, check this here

This is a template I just tried with python3.8 and it worked HTH

AWS
jay-aws
回答済み 2ヶ月前
profile picture
エキスパート
レビュー済み 2ヶ月前
profile pictureAWS
エキスパート
レビュー済み 2ヶ月前
  • Thank you so much for responding. That solved it! I wish the CF event errors were more descriptive. I jumped to python3.11.

  • Just for additional help, you could deploy cfn-lint that linter will pick up invalid values in your CFn template before you even deploy it. In this case it picked up the incorrect python in my IDE.

    https://github.com/aws-cloudformation/cfn-lint

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ