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

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

Introduction

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

Prototype


public void setUserId(String userId) 

Source Link

Document

The ID of the client application user.

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);

}