Is possible to send $LambdaInput into another Destination Lambda with Asynchronous invocation?
For imagination:
PS Lambda1: $LambdaInput = "ABC"; Write-Host $LambdaInput; $LambdaInput
|
|
----> PS Lambda2: Write-Host "This should be ABC from previous Lambda1 - $LambdaInput"
If I hit the test from the Lambda1 it will see ABC from $LambdaInput but I can't see in logs from test button log from second Lambda2. Even in Logs Group Lambda2 has no record.
Am I missing something? Thank you.

