#[non_exhaustive]pub struct UpdateBotAliasInput {
pub bot_alias_id: Option<String>,
pub bot_alias_name: Option<String>,
pub description: Option<String>,
pub bot_version: Option<String>,
pub bot_alias_locale_settings: Option<HashMap<String, BotAliasLocaleSettings>>,
pub conversation_log_settings: Option<ConversationLogSettings>,
pub sentiment_analysis_settings: Option<SentimentAnalysisSettings>,
pub bot_id: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.bot_alias_id: Option<String>The unique identifier of the bot alias.
bot_alias_name: Option<String>The new name to assign to the bot alias.
description: Option<String>The new description to assign to the bot alias.
bot_version: Option<String>The new bot version to assign to the bot alias.
bot_alias_locale_settings: Option<HashMap<String, BotAliasLocaleSettings>>The new Lambda functions to use in each locale for the bot alias.
conversation_log_settings: Option<ConversationLogSettings>The new settings for storing conversation logs in Amazon CloudWatch Logs and Amazon S3 buckets.
sentiment_analysis_settings: Option<SentimentAnalysisSettings>Determines whether Amazon Lex will use Amazon Comprehend to detect the sentiment of user utterances.
bot_id: Option<String>The identifier of the bot with the updated alias.
Implementations§
source§impl UpdateBotAliasInput
impl UpdateBotAliasInput
sourcepub fn bot_alias_id(&self) -> Option<&str>
pub fn bot_alias_id(&self) -> Option<&str>
The unique identifier of the bot alias.
sourcepub fn bot_alias_name(&self) -> Option<&str>
pub fn bot_alias_name(&self) -> Option<&str>
The new name to assign to the bot alias.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The new description to assign to the bot alias.
sourcepub fn bot_version(&self) -> Option<&str>
pub fn bot_version(&self) -> Option<&str>
The new bot version to assign to the bot alias.
sourcepub fn bot_alias_locale_settings(
&self
) -> Option<&HashMap<String, BotAliasLocaleSettings>>
pub fn bot_alias_locale_settings( &self ) -> Option<&HashMap<String, BotAliasLocaleSettings>>
The new Lambda functions to use in each locale for the bot alias.
sourcepub fn conversation_log_settings(&self) -> Option<&ConversationLogSettings>
pub fn conversation_log_settings(&self) -> Option<&ConversationLogSettings>
The new settings for storing conversation logs in Amazon CloudWatch Logs and Amazon S3 buckets.
sourcepub fn sentiment_analysis_settings(&self) -> Option<&SentimentAnalysisSettings>
pub fn sentiment_analysis_settings(&self) -> Option<&SentimentAnalysisSettings>
Determines whether Amazon Lex will use Amazon Comprehend to detect the sentiment of user utterances.
source§impl UpdateBotAliasInput
impl UpdateBotAliasInput
sourcepub fn builder() -> UpdateBotAliasInputBuilder
pub fn builder() -> UpdateBotAliasInputBuilder
Creates a new builder-style object to manufacture UpdateBotAliasInput.
Trait Implementations§
source§impl Clone for UpdateBotAliasInput
impl Clone for UpdateBotAliasInput
source§fn clone(&self) -> UpdateBotAliasInput
fn clone(&self) -> UpdateBotAliasInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateBotAliasInput
impl Debug for UpdateBotAliasInput
source§impl PartialEq for UpdateBotAliasInput
impl PartialEq for UpdateBotAliasInput
source§fn eq(&self, other: &UpdateBotAliasInput) -> bool
fn eq(&self, other: &UpdateBotAliasInput) -> bool
self and other values to be equal, and is used
by ==.