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

Method delete_lambda_function

zappa/core.py:1549–1558  ·  view source on GitHub ↗

Given a function name, delete it from AWS Lambda. Returns the response.

(self, function_name)

Source from the content-addressed store, hash-verified

1547 return []
1548
1549 def delete_lambda_function(self, function_name):
1550 """
1551 Given a function name, delete it from AWS Lambda.
1552 Returns the response.
1553 """
1554 logger.info("Deleting Lambda function..")
1555
1556 return self.lambda_client.delete_function(
1557 FunctionName=function_name,
1558 )
1559
1560 ##
1561 # Function URL

Callers 1

undeployMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected