我正在寻找一种方法来访问用户在 Python Lambda 函数代码中对 Lex 提出的实际问题(或话语)。当我打印event
参数时,lambda_handler(event, context)
我看到打印以下内容:
input_request={'messageVersion': '1.0', 'invocationSource': 'FulfillmentCodeHook', 'userId': 'user1', 'sessionAttributes': None, 'bot': {'name': 'bot_name', 'alias': None, 'version': '$LATEST'}, 'outputDialogMode': 'Text', 'currentIntent': {'name': 'bo1', 'slots': {'Time': '10:00','Date': '2017-06-20'}, 'confirmationStatus': 'Confirmed'}, 'inputTranscript': 'yes'}
我没有看到任何选项来访问用户提出的实际问题,甚至没有看到与该特定问题相匹配的话语。如果我错过了,有没有办法做到这一点?