AWS Certified Alexa Skill Builder – Specialty — Question 10

An Alexa Skill Builder is developing a custom skill and needs to verify that the correct slot values are being passed into the AWS Lambda function.
According to best practices, what is the MOST efficient way to capture this information?

Answer options

Correct answer: D

Explanation

The correct answer is D because parsing the JSON request and saving it locally allows for easy access to the specific slot values during the execution of the Lambda function. Options A, B, and C involve external logging or storage, which may not provide immediate access to the information needed for debugging the slot values.