Given a function name, delete it from AWS Lambda. Returns the response.
(self, function_name)
| 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 |