Struct aws_sdk_lexmodelsv2::operation::update_bot_locale::builders::UpdateBotLocaleInputBuilder
source · #[non_exhaustive]pub struct UpdateBotLocaleInputBuilder { /* private fields */ }Expand description
A builder for UpdateBotLocaleInput.
Implementations§
source§impl UpdateBotLocaleInputBuilder
impl UpdateBotLocaleInputBuilder
sourcepub fn bot_id(self, input: impl Into<String>) -> Self
pub fn bot_id(self, input: impl Into<String>) -> Self
The unique identifier of the bot that contains the locale.
sourcepub fn set_bot_id(self, input: Option<String>) -> Self
pub fn set_bot_id(self, input: Option<String>) -> Self
The unique identifier of the bot that contains the locale.
sourcepub fn bot_version(self, input: impl Into<String>) -> Self
pub fn bot_version(self, input: impl Into<String>) -> Self
The version of the bot that contains the locale to be updated. The version can only be the DRAFT version.
sourcepub fn set_bot_version(self, input: Option<String>) -> Self
pub fn set_bot_version(self, input: Option<String>) -> Self
The version of the bot that contains the locale to be updated. The version can only be the DRAFT version.
sourcepub fn locale_id(self, input: impl Into<String>) -> Self
pub fn locale_id(self, input: impl Into<String>) -> Self
The identifier of the language and locale to update. The string must match one of the supported locales. For more information, see Supported languages.
sourcepub fn set_locale_id(self, input: Option<String>) -> Self
pub fn set_locale_id(self, input: Option<String>) -> Self
The identifier of the language and locale to update. The string must match one of the supported locales. For more information, see Supported languages.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The new description of the locale.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The new description of the locale.
sourcepub fn nlu_intent_confidence_threshold(self, input: f64) -> Self
pub fn nlu_intent_confidence_threshold(self, input: f64) -> Self
The new confidence threshold where Amazon Lex inserts the AMAZON.FallbackIntent and AMAZON.KendraSearchIntent intents in the list of possible intents for an utterance.
sourcepub fn set_nlu_intent_confidence_threshold(self, input: Option<f64>) -> Self
pub fn set_nlu_intent_confidence_threshold(self, input: Option<f64>) -> Self
The new confidence threshold where Amazon Lex inserts the AMAZON.FallbackIntent and AMAZON.KendraSearchIntent intents in the list of possible intents for an utterance.
sourcepub fn voice_settings(self, input: VoiceSettings) -> Self
pub fn voice_settings(self, input: VoiceSettings) -> Self
The new Amazon Polly voice Amazon Lex should use for voice interaction with the user.
sourcepub fn set_voice_settings(self, input: Option<VoiceSettings>) -> Self
pub fn set_voice_settings(self, input: Option<VoiceSettings>) -> Self
The new Amazon Polly voice Amazon Lex should use for voice interaction with the user.
sourcepub fn build(self) -> Result<UpdateBotLocaleInput, BuildError>
pub fn build(self) -> Result<UpdateBotLocaleInput, BuildError>
Consumes the builder and constructs a UpdateBotLocaleInput.
Trait Implementations§
source§impl Clone for UpdateBotLocaleInputBuilder
impl Clone for UpdateBotLocaleInputBuilder
source§fn clone(&self) -> UpdateBotLocaleInputBuilder
fn clone(&self) -> UpdateBotLocaleInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateBotLocaleInputBuilder
impl Debug for UpdateBotLocaleInputBuilder
source§impl Default for UpdateBotLocaleInputBuilder
impl Default for UpdateBotLocaleInputBuilder
source§fn default() -> UpdateBotLocaleInputBuilder
fn default() -> UpdateBotLocaleInputBuilder
source§impl PartialEq<UpdateBotLocaleInputBuilder> for UpdateBotLocaleInputBuilder
impl PartialEq<UpdateBotLocaleInputBuilder> for UpdateBotLocaleInputBuilder
source§fn eq(&self, other: &UpdateBotLocaleInputBuilder) -> bool
fn eq(&self, other: &UpdateBotLocaleInputBuilder) -> bool
self and other values to be equal, and is used
by ==.