api gateway invoke lambda cloudformation

1

pls how can i achieve or make api gateway method to invoke lambda cloudformation Please Share sample code Thank You.

1 Answer
5
Accepted Answer

Please refer AWS Resource API Gateway Method documentation for examples.

Cloudformation template should look like somethings as below, it may require additional tweaks based on your use cace exactly:

    apiGatewayMethod:
    Type: AWS::ApiGateway::Method
    Properties:
        AuthorizationType: NONE
        HttpMethod: !Ref apiGatewayHTTPMethod
        Integration:
        IntegrationHttpMethod: POST
        Type: AWS_PROXY
        Uri: !Sub
            - arn:aws:apigateway:${AWS::Region}:lambda:path/.../functions/${lambdaArn}/invocations
            - lambdaArn: !GetAtt lambdaFunction.Arn
        ResourceId: !GetAtt apiGateway.RootResourceId
        RestApiId: !Ref apiGateway

    lambdaApiGatewayInvoke:
        Type: AWS::Lambda::Permission
        Properties:
        Action: lambda:InvokeFunction
        FunctionName: !GetAtt lambdaFunction.Arn
        Principal: apigateway.amazonaws.com
        SourceArn: !Sub arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:${apiGateway}/<APIGatewayStageName>/<apiGatewayHTTPMethod>/

Hope you find this useful.

Comment here if you have additional questions, happy to help.

Abhishek

profile pictureAWS
EXPERT
answered 8 months ago
profile pictureAWS
EXPERT
iBehr
reviewed 8 months ago
  • Hi Abhishek Thank You, Please i it possible to invoke the lambda aliases to different stages of the API Gateway

    devaliases - devstage testaliases - teststage

  • This AWS documentation Working with stages for HTTP APIs talks about that, though I'm not sure if that is what you are looking for.

  • Your solution is reasonable according to the documentation. The gateway API has to set up permission to execute a lambda function. In the administer panel it suggests setting up the execution role. It is convenient because I do it in most cases. But here there is a solution with permission. How does it look in an admin panel? Using AWS Lambda with Amazon API Gateway

  • Why not? SourceArn: !GetAtt DataExportMethod.Arn

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions