AWS API Gateway没有调用指定的Lambda函数。
创始人
2024-11-14 03:31:58
0

当使用AWS API Gateway调用Lambda函数时,如果出现“AWS API Gateway没有调用指定的Lambda函数”的错误,可能有以下几种解决方法:

  1. 确认Lambda函数的名称和路径是否正确:检查API Gateway的集成设置,确保正确指定了要调用的Lambda函数的名称、路径和HTTP方法。

    示例代码:

    resources:
      Resources:
        MyApiGateway:
          Type: AWS::ApiGateway::RestApi
          Properties:
            Name: MyApiGateway
    
        MyLambdaFunction:
          Type: AWS::Lambda::Function
          Properties:
            FunctionName: MyLambdaFunction
            Handler: index.handler
            Runtime: nodejs14.x
            Code:
              ZipFile: |
                // Lambda function code goes here
    
        MyApiGatewayIntegration:
          Type: AWS::ApiGateway::LambdaIntegration
          Properties:
            RestApiId: !Ref MyApiGateway
            ResourceId: !GetAtt MyApiGateway.RootResourceId
            HttpMethod: POST
            IntegrationHttpMethod: POST
            IntegrationResponses:
              - StatusCode: 200
            Uri: !Sub arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:${MyLambdaFunction}/invocations
    
  2. 确认访问权限是否正确设置:API Gateway需要有足够的权限来调用Lambda函数。确保为API Gateway设置了正确的IAM角色,并为该角色分配了调用Lambda函数的权限。

    示例代码:

    resources:
      Resources:
        MyApiGateway:
          Type: AWS::ApiGateway::RestApi
          Properties:
            Name: MyApiGateway
    
        MyRole:
          Type: AWS::IAM::Role
          Properties:
            RoleName: MyRole
            AssumeRolePolicyDocument:
              Version: '2012-10-17'
              Statement:
                - Effect: Allow
                  Principal:
                    Service: apigateway.amazonaws.com
                  Action: sts:AssumeRole
            Policies:
              - PolicyName: LambdaAccessPolicy
                PolicyDocument:
                  Version: '2012-10-17'
                  Statement:
                    - Effect: Allow
                      Action:
                        - lambda:InvokeFunction
                      Resource: !Sub arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:${MyLambdaFunction}
    
        MyLambdaFunction:
          Type: AWS::Lambda::Function
          Properties:
            FunctionName: MyLambdaFunction
            Handler: index.handler
            Runtime: nodejs14.x
            Code:
              ZipFile: |
                // Lambda function code goes here
    
        MyApiGatewayIntegration:
          Type: AWS::ApiGateway::LambdaIntegration
          Properties:
            RestApiId: !Ref MyApiGateway
            ResourceId: !GetAtt MyApiGateway.RootResourceId
            HttpMethod: POST
            IntegrationHttpMethod: POST
            Role: !GetAtt MyRole.Arn
            IntegrationResponses:
              - StatusCode: 200
            Uri: !Sub arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:${MyLambdaFunction}/invocations
    
  3. 检查Lambda函数的日志:在AWS控制台中查看Lambda函数的日志,以了解是否有任何错误或异常。可能会显示与函数调用相关的详细信息,帮助你确定问题的根本原因。

    示例代码:

    exports.handler = async (event) => {
      console.log('Lambda function invoked');
      // Lambda function code goes here
      return {
        statusCode: 200,
        body: 'Lambda function executed successfully'
      };
    };
    

通过确认Lambda函数的名称和路径是否正确、检查访问权限是否正确设置以及检查Lambda函数的日志,你应该能够解决“AWS API Gateway没有调用指定的Lambda函数”的问题。

相关内容

热门资讯

前端-session、jwt 目录:   (1)session (2&#x...
linux入门---制作进度条 了解缓冲区 我们首先来看看下面的操作: 我们首先创建了一个文件并在这个文件里面添加了...
关于测试,我发现了哪些新大陆 关于测试 平常也只是听说过一些关于测试的术语,但并没有使用过测试工具。偶然看到编程老师...
前缀和与对数器与二分法 1. 前缀和 假设有一个数组,我们想大量频繁的去访问L到R这个区间的和,...
nodejs:本地安装nvm实... 一、背景-使用不同版本node的原因 vue3+ts、nuxt3版本,node...
JAVA集合知识整理 Java集合知识整理 HashMap相关 HashMap的底层数据结构:jdk1.8之...
无刷直流电机介绍及单片机控制实... 无刷直流电机介绍及单片机控制实例前言基本概念优势与劣势使用寿命基本结构使用单片机控制实例电子调速器&...
fwdiary(2) dp2 1.传纸条  AcWing 275. 传纸条 - AcWing 走两条路,走一条最大的...
常用的DOS命令 常用的DOS命令 DOS(Disk Operating System,磁...
<C++> 类和对象(下) 1.const成员函数将const修饰的“成员函数”称之为const成员函数,cons...