Mantas Vaitkūnas

Results 2 comments of Mantas Vaitkūnas

I am having the same problem. @harmenjanssen can you reopen the issue as ATM it's not clear how to use this config option :/

As @georgeboot said, I had a look into $_SERVER and found out that $_SERVER['LAMBDA_INVOCATION_CONTEXT'] has necessary info: ```php $requestId = null; if (isset($_SERVER['LAMBDA_INVOCATION_CONTEXT'])) { $lambdaContext = json_decode($_SERVER['LAMBDA_INVOCATION_CONTEXT']); $requestId = $lambdaContext?->awsRequestId;...