Here's an intuitive solution (to add another option to Oleksandr's answer):
$payload = json_decode($result['Payload'], true);
and to get, for example, the body
, you have to decode the JSON string again:
$body = json_decode($payload['body'], true);