MCPcopy Index your code
hub / github.com/zappa/Zappa / get_lambda_function

Method get_lambda_function

zappa/core.py:1531–1537  ·  view source on GitHub ↗

Returns the lambda function ARN, given a name This requires the "lambda:GetFunction" role.

(self, function_name)

Source from the content-addressed store, hash-verified

1529 waiter.wait(FunctionName=function_name)
1530
1531 def get_lambda_function(self, function_name):
1532 """
1533 Returns the lambda function ARN, given a name
1534 This requires the "lambda:GetFunction" role.
1535 """
1536 response = self.lambda_client.get_function(FunctionName=function_name)
1537 return response["Configuration"]["FunctionArn"]
1538
1539 def get_lambda_function_versions(self, function_name):
1540 """

Callers 3

deployMethod · 0.80
scheduleMethod · 0.80
certifyMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected