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.
This field is required.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 get_bot_id(&self) -> &Option<String>
pub fn get_bot_id(&self) -> &Option<String>
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 get_bot_version(&self) -> &Option<String>
pub fn get_bot_version(&self) -> &Option<String>
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.
This field is required.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 get_locale_id(&self) -> &Option<String>
pub fn get_locale_id(&self) -> &Option<String>
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 get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
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 get_nlu_intent_confidence_threshold(&self) -> &Option<f64>
pub fn get_nlu_intent_confidence_threshold(&self) -> &Option<f64>
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 get_voice_settings(&self) -> &Option<VoiceSettings>
pub fn get_voice_settings(&self) -> &Option<VoiceSettings>
The new Amazon Polly voice Amazon Lex should use for voice interaction with the user.
sourcepub fn generative_ai_settings(self, input: GenerativeAiSettings) -> Self
pub fn generative_ai_settings(self, input: GenerativeAiSettings) -> Self
Contains settings for generative AI features powered by Amazon Bedrock for your bot locale. Use this object to turn generative AI features on and off. Pricing may differ if you turn a feature on. For more information, see LINK.
sourcepub fn set_generative_ai_settings(
self,
input: Option<GenerativeAiSettings>
) -> Self
pub fn set_generative_ai_settings( self, input: Option<GenerativeAiSettings> ) -> Self
Contains settings for generative AI features powered by Amazon Bedrock for your bot locale. Use this object to turn generative AI features on and off. Pricing may differ if you turn a feature on. For more information, see LINK.
sourcepub fn get_generative_ai_settings(&self) -> &Option<GenerativeAiSettings>
pub fn get_generative_ai_settings(&self) -> &Option<GenerativeAiSettings>
Contains settings for generative AI features powered by Amazon Bedrock for your bot locale. Use this object to turn generative AI features on and off. Pricing may differ if you turn a feature on. For more information, see LINK.
sourcepub fn build(self) -> Result<UpdateBotLocaleInput, BuildError>
pub fn build(self) -> Result<UpdateBotLocaleInput, BuildError>
Consumes the builder and constructs a UpdateBotLocaleInput.
source§impl UpdateBotLocaleInputBuilder
impl UpdateBotLocaleInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateBotLocaleOutput, SdkError<UpdateBotLocaleError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateBotLocaleOutput, SdkError<UpdateBotLocaleError, HttpResponse>>
Sends a request with this input using the given client.
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 for UpdateBotLocaleInputBuilder
impl PartialEq 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 ==.