Struct aws_sdk_lexmodelsv2::operation::update_bot_locale::builders::UpdateBotLocaleFluentBuilder
source · pub struct UpdateBotLocaleFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to UpdateBotLocale.
Updates the settings that a bot has for a specific locale.
Implementations§
source§impl UpdateBotLocaleFluentBuilder
impl UpdateBotLocaleFluentBuilder
sourcepub fn as_input(&self) -> &UpdateBotLocaleInputBuilder
pub fn as_input(&self) -> &UpdateBotLocaleInputBuilder
Access the UpdateBotLocale as a reference.
sourcepub async fn send(
self
) -> Result<UpdateBotLocaleOutput, SdkError<UpdateBotLocaleError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateBotLocaleOutput, SdkError<UpdateBotLocaleError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<UpdateBotLocaleOutput, UpdateBotLocaleError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateBotLocaleOutput, UpdateBotLocaleError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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 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.
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.
Trait Implementations§
source§impl Clone for UpdateBotLocaleFluentBuilder
impl Clone for UpdateBotLocaleFluentBuilder
source§fn clone(&self) -> UpdateBotLocaleFluentBuilder
fn clone(&self) -> UpdateBotLocaleFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more