/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace LexModelsV2 { namespace Model { /** */ class CreateBotLocaleRequest : public LexModelsV2Request { public: AWS_LEXMODELSV2_API CreateBotLocaleRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "CreateBotLocale"; } AWS_LEXMODELSV2_API Aws::String SerializePayload() const override; /** *

The identifier of the bot to create the locale for.

*/ inline const Aws::String& GetBotId() const{ return m_botId; } /** *

The identifier of the bot to create the locale for.

*/ inline bool BotIdHasBeenSet() const { return m_botIdHasBeenSet; } /** *

The identifier of the bot to create the locale for.

*/ inline void SetBotId(const Aws::String& value) { m_botIdHasBeenSet = true; m_botId = value; } /** *

The identifier of the bot to create the locale for.

*/ inline void SetBotId(Aws::String&& value) { m_botIdHasBeenSet = true; m_botId = std::move(value); } /** *

The identifier of the bot to create the locale for.

*/ inline void SetBotId(const char* value) { m_botIdHasBeenSet = true; m_botId.assign(value); } /** *

The identifier of the bot to create the locale for.

*/ inline CreateBotLocaleRequest& WithBotId(const Aws::String& value) { SetBotId(value); return *this;} /** *

The identifier of the bot to create the locale for.

*/ inline CreateBotLocaleRequest& WithBotId(Aws::String&& value) { SetBotId(std::move(value)); return *this;} /** *

The identifier of the bot to create the locale for.

*/ inline CreateBotLocaleRequest& WithBotId(const char* value) { SetBotId(value); return *this;} /** *

The version of the bot to create the locale for. This can only be the draft * version of the bot.

*/ inline const Aws::String& GetBotVersion() const{ return m_botVersion; } /** *

The version of the bot to create the locale for. This can only be the draft * version of the bot.

*/ inline bool BotVersionHasBeenSet() const { return m_botVersionHasBeenSet; } /** *

The version of the bot to create the locale for. This can only be the draft * version of the bot.

*/ inline void SetBotVersion(const Aws::String& value) { m_botVersionHasBeenSet = true; m_botVersion = value; } /** *

The version of the bot to create the locale for. This can only be the draft * version of the bot.

*/ inline void SetBotVersion(Aws::String&& value) { m_botVersionHasBeenSet = true; m_botVersion = std::move(value); } /** *

The version of the bot to create the locale for. This can only be the draft * version of the bot.

*/ inline void SetBotVersion(const char* value) { m_botVersionHasBeenSet = true; m_botVersion.assign(value); } /** *

The version of the bot to create the locale for. This can only be the draft * version of the bot.

*/ inline CreateBotLocaleRequest& WithBotVersion(const Aws::String& value) { SetBotVersion(value); return *this;} /** *

The version of the bot to create the locale for. This can only be the draft * version of the bot.

*/ inline CreateBotLocaleRequest& WithBotVersion(Aws::String&& value) { SetBotVersion(std::move(value)); return *this;} /** *

The version of the bot to create the locale for. This can only be the draft * version of the bot.

*/ inline CreateBotLocaleRequest& WithBotVersion(const char* value) { SetBotVersion(value); return *this;} /** *

The identifier of the language and locale that the bot will be used in. The * string must match one of the supported locales. All of the intents, slot types, * and slots used in the bot must have the same locale. For more information, see * Supported * languages.

*/ inline const Aws::String& GetLocaleId() const{ return m_localeId; } /** *

The identifier of the language and locale that the bot will be used in. The * string must match one of the supported locales. All of the intents, slot types, * and slots used in the bot must have the same locale. For more information, see * Supported * languages.

*/ inline bool LocaleIdHasBeenSet() const { return m_localeIdHasBeenSet; } /** *

The identifier of the language and locale that the bot will be used in. The * string must match one of the supported locales. All of the intents, slot types, * and slots used in the bot must have the same locale. For more information, see * Supported * languages.

*/ inline void SetLocaleId(const Aws::String& value) { m_localeIdHasBeenSet = true; m_localeId = value; } /** *

The identifier of the language and locale that the bot will be used in. The * string must match one of the supported locales. All of the intents, slot types, * and slots used in the bot must have the same locale. For more information, see * Supported * languages.

*/ inline void SetLocaleId(Aws::String&& value) { m_localeIdHasBeenSet = true; m_localeId = std::move(value); } /** *

The identifier of the language and locale that the bot will be used in. The * string must match one of the supported locales. All of the intents, slot types, * and slots used in the bot must have the same locale. For more information, see * Supported * languages.

*/ inline void SetLocaleId(const char* value) { m_localeIdHasBeenSet = true; m_localeId.assign(value); } /** *

The identifier of the language and locale that the bot will be used in. The * string must match one of the supported locales. All of the intents, slot types, * and slots used in the bot must have the same locale. For more information, see * Supported * languages.

*/ inline CreateBotLocaleRequest& WithLocaleId(const Aws::String& value) { SetLocaleId(value); return *this;} /** *

The identifier of the language and locale that the bot will be used in. The * string must match one of the supported locales. All of the intents, slot types, * and slots used in the bot must have the same locale. For more information, see * Supported * languages.

*/ inline CreateBotLocaleRequest& WithLocaleId(Aws::String&& value) { SetLocaleId(std::move(value)); return *this;} /** *

The identifier of the language and locale that the bot will be used in. The * string must match one of the supported locales. All of the intents, slot types, * and slots used in the bot must have the same locale. For more information, see * Supported * languages.

*/ inline CreateBotLocaleRequest& WithLocaleId(const char* value) { SetLocaleId(value); return *this;} /** *

A description of the bot locale. Use this to help identify the bot locale in * lists.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

A description of the bot locale. Use this to help identify the bot locale in * lists.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

A description of the bot locale. Use this to help identify the bot locale in * lists.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

A description of the bot locale. Use this to help identify the bot locale in * lists.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

A description of the bot locale. Use this to help identify the bot locale in * lists.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

A description of the bot locale. Use this to help identify the bot locale in * lists.

*/ inline CreateBotLocaleRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

A description of the bot locale. Use this to help identify the bot locale in * lists.

*/ inline CreateBotLocaleRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

A description of the bot locale. Use this to help identify the bot locale in * lists.

*/ inline CreateBotLocaleRequest& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

Determines the threshold where Amazon Lex will insert the * AMAZON.FallbackIntent, AMAZON.KendraSearchIntent, or * both when returning alternative intents. AMAZON.FallbackIntent and * AMAZON.KendraSearchIntent are only inserted if they are configured * for the bot.

For example, suppose a bot is configured with the confidence * threshold of 0.80 and the AMAZON.FallbackIntent. Amazon Lex returns * three alternative intents with the following confidence scores: IntentA (0.70), * IntentB (0.60), IntentC (0.50). The response from the RecognizeText * operation would be:

  • AMAZON.FallbackIntent

  • *

    IntentA

  • IntentB

  • IntentC

*/ inline double GetNluIntentConfidenceThreshold() const{ return m_nluIntentConfidenceThreshold; } /** *

Determines the threshold where Amazon Lex will insert the * AMAZON.FallbackIntent, AMAZON.KendraSearchIntent, or * both when returning alternative intents. AMAZON.FallbackIntent and * AMAZON.KendraSearchIntent are only inserted if they are configured * for the bot.

For example, suppose a bot is configured with the confidence * threshold of 0.80 and the AMAZON.FallbackIntent. Amazon Lex returns * three alternative intents with the following confidence scores: IntentA (0.70), * IntentB (0.60), IntentC (0.50). The response from the RecognizeText * operation would be:

  • AMAZON.FallbackIntent

  • *

    IntentA

  • IntentB

  • IntentC

*/ inline bool NluIntentConfidenceThresholdHasBeenSet() const { return m_nluIntentConfidenceThresholdHasBeenSet; } /** *

Determines the threshold where Amazon Lex will insert the * AMAZON.FallbackIntent, AMAZON.KendraSearchIntent, or * both when returning alternative intents. AMAZON.FallbackIntent and * AMAZON.KendraSearchIntent are only inserted if they are configured * for the bot.

For example, suppose a bot is configured with the confidence * threshold of 0.80 and the AMAZON.FallbackIntent. Amazon Lex returns * three alternative intents with the following confidence scores: IntentA (0.70), * IntentB (0.60), IntentC (0.50). The response from the RecognizeText * operation would be:

  • AMAZON.FallbackIntent

  • *

    IntentA

  • IntentB

  • IntentC

*/ inline void SetNluIntentConfidenceThreshold(double value) { m_nluIntentConfidenceThresholdHasBeenSet = true; m_nluIntentConfidenceThreshold = value; } /** *

Determines the threshold where Amazon Lex will insert the * AMAZON.FallbackIntent, AMAZON.KendraSearchIntent, or * both when returning alternative intents. AMAZON.FallbackIntent and * AMAZON.KendraSearchIntent are only inserted if they are configured * for the bot.

For example, suppose a bot is configured with the confidence * threshold of 0.80 and the AMAZON.FallbackIntent. Amazon Lex returns * three alternative intents with the following confidence scores: IntentA (0.70), * IntentB (0.60), IntentC (0.50). The response from the RecognizeText * operation would be:

  • AMAZON.FallbackIntent

  • *

    IntentA

  • IntentB

  • IntentC

*/ inline CreateBotLocaleRequest& WithNluIntentConfidenceThreshold(double value) { SetNluIntentConfidenceThreshold(value); return *this;} /** *

The Amazon Polly voice ID that Amazon Lex uses for voice interaction with the * user.

*/ inline const VoiceSettings& GetVoiceSettings() const{ return m_voiceSettings; } /** *

The Amazon Polly voice ID that Amazon Lex uses for voice interaction with the * user.

*/ inline bool VoiceSettingsHasBeenSet() const { return m_voiceSettingsHasBeenSet; } /** *

The Amazon Polly voice ID that Amazon Lex uses for voice interaction with the * user.

*/ inline void SetVoiceSettings(const VoiceSettings& value) { m_voiceSettingsHasBeenSet = true; m_voiceSettings = value; } /** *

The Amazon Polly voice ID that Amazon Lex uses for voice interaction with the * user.

*/ inline void SetVoiceSettings(VoiceSettings&& value) { m_voiceSettingsHasBeenSet = true; m_voiceSettings = std::move(value); } /** *

The Amazon Polly voice ID that Amazon Lex uses for voice interaction with the * user.

*/ inline CreateBotLocaleRequest& WithVoiceSettings(const VoiceSettings& value) { SetVoiceSettings(value); return *this;} /** *

The Amazon Polly voice ID that Amazon Lex uses for voice interaction with the * user.

*/ inline CreateBotLocaleRequest& WithVoiceSettings(VoiceSettings&& value) { SetVoiceSettings(std::move(value)); return *this;} private: Aws::String m_botId; bool m_botIdHasBeenSet = false; Aws::String m_botVersion; bool m_botVersionHasBeenSet = false; Aws::String m_localeId; bool m_localeIdHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; double m_nluIntentConfidenceThreshold; bool m_nluIntentConfidenceThresholdHasBeenSet = false; VoiceSettings m_voiceSettings; bool m_voiceSettingsHasBeenSet = false; }; } // namespace Model } // namespace LexModelsV2 } // namespace Aws