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.

42 lines
1.1 KiB

  1. import boto3
  2. import json
  3. ################################################################################################
  4. #
  5. # Configuration Parameters
  6. #
  7. ################################################################################################
  8. # region = 'eu-central-1'
  9. region = 'us-east-1'
  10. functionName = 'cloudcomp-counter-lambda-demo'
  11. ################################################################################################
  12. #
  13. # boto3 code
  14. #
  15. ################################################################################################
  16. client = boto3.setup_default_session(region_name=region)
  17. lClient = boto3.client('lambda')
  18. print("Invoking function...")
  19. print("------------------------------------")
  20. try:
  21. response = lClient.invoke(
  22. FunctionName=functionName,
  23. Payload='{ "input": "1" }'
  24. )
  25. except lClient.exceptions.ResourceNotFoundException:
  26. print('Function not available. No need to delete it.')
  27. streamingBody = response['Payload']
  28. result = streamingBody.read()
  29. print(json.dumps(response, indent=4, sort_keys=True, default=str))
  30. print('Payload:\n' + str(result))