Skip to content

Instantly share code, notes, and snippets.

@AMMullan
Created September 15, 2020 15:26
Show Gist options
  • Save AMMullan/27a3c2989696f3b4918cefbc07af1109 to your computer and use it in GitHub Desktop.
Save AMMullan/27a3c2989696f3b4918cefbc07af1109 to your computer and use it in GitHub Desktop.
Self-Destructing Lambda
import os
import boto3
lmbda = boto3.client ('lambda')
def lambda_handler(event, context):
lmbda.delete_function(FunctionName=context.function_name)
return True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment