You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1005 B

  1. import boto3
  2. import zipfile
  3. ################################################################################################
  4. #
  5. # Configuration Parameters
  6. #
  7. ################################################################################################
  8. region = 'eu-central-1'
  9. functionName = 'cloudcomp-counter-lambda-demo'
  10. roleName = 'arn:aws:iam::309000625112:role/service-role/cloudcomp-counter-demo-role-6rs7pah3'
  11. ################################################################################################
  12. #
  13. # boto3 code
  14. #
  15. ################################################################################################
  16. client = boto3.setup_default_session(region_name=region)
  17. lClient = boto3.client('lambda')
  18. print("Deleting old function...")
  19. print("------------------------------------")
  20. try:
  21. response = lClient.delete_function(
  22. FunctionName=functionName,
  23. )
  24. except lClient.exceptions.ResourceNotFoundException:
  25. print('Function not available. No need to delete it.')