Example usage for com.amazonaws.services.lexruntime.model PostTextRequest setInputText

List of usage examples for com.amazonaws.services.lexruntime.model PostTextRequest setInputText

Introduction

In this page you can find the example usage for com.amazonaws.services.lexruntime.model PostTextRequest setInputText.

Prototype


public void setInputText(String inputText) 

Source Link

Document

The text that the user entered (Amazon Lex interprets this text).

Usage

From source file:lex.LexBotRelay.java

License:Apache License

private PostTextResult sendLexMessage(SymMessage symMessage) {

    PostTextRequest postTextRequest = new PostTextRequest();

    postTextRequest.setBotAlias(lexBotDetail.getBotAlias());
    postTextRequest.setBotName(lexBotDetail.getBotName());
    postTextRequest.setRequestAttributes(lexBotDetail.getRequestAttributes());
    postTextRequest.setSessionAttributes(lexBotDetail.getSessionAttributes());
    postTextRequest.setUserId(symMessage.getFromUserId().toString());
    postTextRequest.setInputText(symMessage.getMessageText());

    return lexClient.postText(postTextRequest);

}