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

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

Introduction

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

Prototype


public void setBotAlias(String botAlias) 

Source Link

Document

The alias of the Amazon Lex bot.

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

}