* The identifier of the bot alias. *
*/ private String botAliasId; /** ** The name of the bot alias. *
*/ private String botAliasName; /** ** The description of the bot alias. *
*/ private String description; /** ** The version of the bot associated with the bot alias. *
*/ private String botVersion; /** ** The locale settings that are unique to the alias. *
*/ private java.util.Map* Specifics of how Amazon Lex logs text and audio conversations with the bot associated with the alias. *
*/ private ConversationLogSettings conversationLogSettings; private SentimentAnalysisSettings sentimentAnalysisSettings; /** ** A list of events that affect a bot alias. For example, an event is recorded when the version that the alias * points to changes. *
*/ private java.util.List
* The current status of the alias. When the alias is Available
, the alias is ready for use with your
* bot.
*
* The identifier of the bot associated with the bot alias. *
*/ private String botId; /** ** A timestamp of the date and time that the alias was created. *
*/ private java.util.Date creationDateTime; /** ** A timestamp of the date and time that the alias was last updated. *
*/ private java.util.Date lastUpdatedDateTime; /** ** A list of the networks to which the bot alias you described belongs. *
*/ private java.util.List* The identifier of the bot alias. *
* * @param botAliasId * The identifier of the bot alias. */ public void setBotAliasId(String botAliasId) { this.botAliasId = botAliasId; } /** ** The identifier of the bot alias. *
* * @return The identifier of the bot alias. */ public String getBotAliasId() { return this.botAliasId; } /** ** The identifier of the bot alias. *
* * @param botAliasId * The identifier of the bot alias. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeBotAliasResult withBotAliasId(String botAliasId) { setBotAliasId(botAliasId); return this; } /** ** The name of the bot alias. *
* * @param botAliasName * The name of the bot alias. */ public void setBotAliasName(String botAliasName) { this.botAliasName = botAliasName; } /** ** The name of the bot alias. *
* * @return The name of the bot alias. */ public String getBotAliasName() { return this.botAliasName; } /** ** The name of the bot alias. *
* * @param botAliasName * The name of the bot alias. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeBotAliasResult withBotAliasName(String botAliasName) { setBotAliasName(botAliasName); return this; } /** ** The description of the bot alias. *
* * @param description * The description of the bot alias. */ public void setDescription(String description) { this.description = description; } /** ** The description of the bot alias. *
* * @return The description of the bot alias. */ public String getDescription() { return this.description; } /** ** The description of the bot alias. *
* * @param description * The description of the bot alias. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeBotAliasResult withDescription(String description) { setDescription(description); return this; } /** ** The version of the bot associated with the bot alias. *
* * @param botVersion * The version of the bot associated with the bot alias. */ public void setBotVersion(String botVersion) { this.botVersion = botVersion; } /** ** The version of the bot associated with the bot alias. *
* * @return The version of the bot associated with the bot alias. */ public String getBotVersion() { return this.botVersion; } /** ** The version of the bot associated with the bot alias. *
* * @param botVersion * The version of the bot associated with the bot alias. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeBotAliasResult withBotVersion(String botVersion) { setBotVersion(botVersion); return this; } /** ** The locale settings that are unique to the alias. *
* * @return The locale settings that are unique to the alias. */ public java.util.Map* The locale settings that are unique to the alias. *
* * @param botAliasLocaleSettings * The locale settings that are unique to the alias. */ public void setBotAliasLocaleSettings(java.util.Map* The locale settings that are unique to the alias. *
* * @param botAliasLocaleSettings * The locale settings that are unique to the alias. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeBotAliasResult withBotAliasLocaleSettings(java.util.Map* Specifics of how Amazon Lex logs text and audio conversations with the bot associated with the alias. *
* * @param conversationLogSettings * Specifics of how Amazon Lex logs text and audio conversations with the bot associated with the alias. */ public void setConversationLogSettings(ConversationLogSettings conversationLogSettings) { this.conversationLogSettings = conversationLogSettings; } /** ** Specifics of how Amazon Lex logs text and audio conversations with the bot associated with the alias. *
* * @return Specifics of how Amazon Lex logs text and audio conversations with the bot associated with the alias. */ public ConversationLogSettings getConversationLogSettings() { return this.conversationLogSettings; } /** ** Specifics of how Amazon Lex logs text and audio conversations with the bot associated with the alias. *
* * @param conversationLogSettings * Specifics of how Amazon Lex logs text and audio conversations with the bot associated with the alias. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeBotAliasResult withConversationLogSettings(ConversationLogSettings conversationLogSettings) { setConversationLogSettings(conversationLogSettings); return this; } /** * @param sentimentAnalysisSettings */ public void setSentimentAnalysisSettings(SentimentAnalysisSettings sentimentAnalysisSettings) { this.sentimentAnalysisSettings = sentimentAnalysisSettings; } /** * @return */ public SentimentAnalysisSettings getSentimentAnalysisSettings() { return this.sentimentAnalysisSettings; } /** * @param sentimentAnalysisSettings * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeBotAliasResult withSentimentAnalysisSettings(SentimentAnalysisSettings sentimentAnalysisSettings) { setSentimentAnalysisSettings(sentimentAnalysisSettings); return this; } /** ** A list of events that affect a bot alias. For example, an event is recorded when the version that the alias * points to changes. *
* * @return A list of events that affect a bot alias. For example, an event is recorded when the version that the * alias points to changes. */ public java.util.List* A list of events that affect a bot alias. For example, an event is recorded when the version that the alias * points to changes. *
* * @param botAliasHistoryEvents * A list of events that affect a bot alias. For example, an event is recorded when the version that the * alias points to changes. */ public void setBotAliasHistoryEvents(java.util.Collection* A list of events that affect a bot alias. For example, an event is recorded when the version that the alias * points to changes. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setBotAliasHistoryEvents(java.util.Collection)} or * {@link #withBotAliasHistoryEvents(java.util.Collection)} if you want to override the existing values. *
* * @param botAliasHistoryEvents * A list of events that affect a bot alias. For example, an event is recorded when the version that the * alias points to changes. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeBotAliasResult withBotAliasHistoryEvents(BotAliasHistoryEvent... botAliasHistoryEvents) { if (this.botAliasHistoryEvents == null) { setBotAliasHistoryEvents(new java.util.ArrayList* A list of events that affect a bot alias. For example, an event is recorded when the version that the alias * points to changes. *
* * @param botAliasHistoryEvents * A list of events that affect a bot alias. For example, an event is recorded when the version that the * alias points to changes. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeBotAliasResult withBotAliasHistoryEvents(java.util.Collection
* The current status of the alias. When the alias is Available
, the alias is ready for use with your
* bot.
*
Available
, the alias is ready for use with
* your bot.
* @see BotAliasStatus
*/
public void setBotAliasStatus(String botAliasStatus) {
this.botAliasStatus = botAliasStatus;
}
/**
*
* The current status of the alias. When the alias is Available
, the alias is ready for use with your
* bot.
*
Available
, the alias is ready for use
* with your bot.
* @see BotAliasStatus
*/
public String getBotAliasStatus() {
return this.botAliasStatus;
}
/**
*
* The current status of the alias. When the alias is Available
, the alias is ready for use with your
* bot.
*
Available
, the alias is ready for use with
* your bot.
* @return Returns a reference to this object so that method calls can be chained together.
* @see BotAliasStatus
*/
public DescribeBotAliasResult withBotAliasStatus(String botAliasStatus) {
setBotAliasStatus(botAliasStatus);
return this;
}
/**
*
* The current status of the alias. When the alias is Available
, the alias is ready for use with your
* bot.
*
Available
, the alias is ready for use with
* your bot.
* @return Returns a reference to this object so that method calls can be chained together.
* @see BotAliasStatus
*/
public DescribeBotAliasResult withBotAliasStatus(BotAliasStatus botAliasStatus) {
this.botAliasStatus = botAliasStatus.toString();
return this;
}
/**
* * The identifier of the bot associated with the bot alias. *
* * @param botId * The identifier of the bot associated with the bot alias. */ public void setBotId(String botId) { this.botId = botId; } /** ** The identifier of the bot associated with the bot alias. *
* * @return The identifier of the bot associated with the bot alias. */ public String getBotId() { return this.botId; } /** ** The identifier of the bot associated with the bot alias. *
* * @param botId * The identifier of the bot associated with the bot alias. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeBotAliasResult withBotId(String botId) { setBotId(botId); return this; } /** ** A timestamp of the date and time that the alias was created. *
* * @param creationDateTime * A timestamp of the date and time that the alias was created. */ public void setCreationDateTime(java.util.Date creationDateTime) { this.creationDateTime = creationDateTime; } /** ** A timestamp of the date and time that the alias was created. *
* * @return A timestamp of the date and time that the alias was created. */ public java.util.Date getCreationDateTime() { return this.creationDateTime; } /** ** A timestamp of the date and time that the alias was created. *
* * @param creationDateTime * A timestamp of the date and time that the alias was created. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeBotAliasResult withCreationDateTime(java.util.Date creationDateTime) { setCreationDateTime(creationDateTime); return this; } /** ** A timestamp of the date and time that the alias was last updated. *
* * @param lastUpdatedDateTime * A timestamp of the date and time that the alias was last updated. */ public void setLastUpdatedDateTime(java.util.Date lastUpdatedDateTime) { this.lastUpdatedDateTime = lastUpdatedDateTime; } /** ** A timestamp of the date and time that the alias was last updated. *
* * @return A timestamp of the date and time that the alias was last updated. */ public java.util.Date getLastUpdatedDateTime() { return this.lastUpdatedDateTime; } /** ** A timestamp of the date and time that the alias was last updated. *
* * @param lastUpdatedDateTime * A timestamp of the date and time that the alias was last updated. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeBotAliasResult withLastUpdatedDateTime(java.util.Date lastUpdatedDateTime) { setLastUpdatedDateTime(lastUpdatedDateTime); return this; } /** ** A list of the networks to which the bot alias you described belongs. *
* * @return A list of the networks to which the bot alias you described belongs. */ public java.util.List* A list of the networks to which the bot alias you described belongs. *
* * @param parentBotNetworks * A list of the networks to which the bot alias you described belongs. */ public void setParentBotNetworks(java.util.Collection* A list of the networks to which the bot alias you described belongs. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setParentBotNetworks(java.util.Collection)} or {@link #withParentBotNetworks(java.util.Collection)} if * you want to override the existing values. *
* * @param parentBotNetworks * A list of the networks to which the bot alias you described belongs. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeBotAliasResult withParentBotNetworks(ParentBotNetwork... parentBotNetworks) { if (this.parentBotNetworks == null) { setParentBotNetworks(new java.util.ArrayList* A list of the networks to which the bot alias you described belongs. *
* * @param parentBotNetworks * A list of the networks to which the bot alias you described belongs. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeBotAliasResult withParentBotNetworks(java.util.Collection