I want to invoke second Lambda function from first lambda function using Python. To invoke I'm using below code snippet: lambda_client = boto3.client('lambda')
def lambda_handler(event, context):
invoke_response = lambda_client.invoke(FunctionName="teststack",InvocationType='RequestResponse')
In that I want to pass two additional parameter, for example: Name and age to the second lambda function, can someone help how I can pass additional parameter to another lambda function and how to receive it in second lambda function.
Thanks for your help in advance!