Amazon web services – Invoke an AWS Lambda Function without being Authenticated
I would like to invoke an AWS Lambda Function (using Python) without being authenticated, like so: from boto3 import client from botocore import UNSIGNED from botocore.client import Config from json import dumps def invoke(functionName, params): lambda_client = client('lambda', aws_access_key_id='', aws_secret_access_key='',…