/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace LexModelsV2 { namespace Model { /** */ class BatchCreateCustomVocabularyItemRequest : public LexModelsV2Request { public: AWS_LEXMODELSV2_API BatchCreateCustomVocabularyItemRequest(); // 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 "BatchCreateCustomVocabularyItem"; } AWS_LEXMODELSV2_API Aws::String SerializePayload() const override; /** *

The identifier of the bot associated with this custom vocabulary.

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

The identifier of the bot associated with this custom vocabulary.

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

The identifier of the bot associated with this custom vocabulary.

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

The identifier of the bot associated with this custom vocabulary.

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

The identifier of the bot associated with this custom vocabulary.

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

The identifier of the bot associated with this custom vocabulary.

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

The identifier of the bot associated with this custom vocabulary.

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

The identifier of the bot associated with this custom vocabulary.

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

The identifier of the version of the bot associated with this custom * vocabulary.

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

The identifier of the version of the bot associated with this custom * vocabulary.

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

The identifier of the version of the bot associated with this custom * vocabulary.

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

The identifier of the version of the bot associated with this custom * vocabulary.

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

The identifier of the version of the bot associated with this custom * vocabulary.

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

The identifier of the version of the bot associated with this custom * vocabulary.

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

The identifier of the version of the bot associated with this custom * vocabulary.

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

The identifier of the version of the bot associated with this custom * vocabulary.

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

The identifier of the language and locale where this custom vocabulary is * used. The string must match one of the supported locales. For more information, * see * Supported Languages .

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

The identifier of the language and locale where this custom vocabulary is * used. The string must match one of the supported locales. For more information, * see * Supported Languages .

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

The identifier of the language and locale where this custom vocabulary is * used. The string must match one of the supported locales. 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 where this custom vocabulary is * used. The string must match one of the supported locales. 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 where this custom vocabulary is * used. The string must match one of the supported locales. 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 where this custom vocabulary is * used. The string must match one of the supported locales. For more information, * see * Supported Languages .

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

The identifier of the language and locale where this custom vocabulary is * used. The string must match one of the supported locales. For more information, * see * Supported Languages .

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

The identifier of the language and locale where this custom vocabulary is * used. The string must match one of the supported locales. For more information, * see * Supported Languages .

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

A list of new custom vocabulary items. Each entry must contain a phrase and * can optionally contain a displayAs and/or a weight.

*/ inline const Aws::Vector& GetCustomVocabularyItemList() const{ return m_customVocabularyItemList; } /** *

A list of new custom vocabulary items. Each entry must contain a phrase and * can optionally contain a displayAs and/or a weight.

*/ inline bool CustomVocabularyItemListHasBeenSet() const { return m_customVocabularyItemListHasBeenSet; } /** *

A list of new custom vocabulary items. Each entry must contain a phrase and * can optionally contain a displayAs and/or a weight.

*/ inline void SetCustomVocabularyItemList(const Aws::Vector& value) { m_customVocabularyItemListHasBeenSet = true; m_customVocabularyItemList = value; } /** *

A list of new custom vocabulary items. Each entry must contain a phrase and * can optionally contain a displayAs and/or a weight.

*/ inline void SetCustomVocabularyItemList(Aws::Vector&& value) { m_customVocabularyItemListHasBeenSet = true; m_customVocabularyItemList = std::move(value); } /** *

A list of new custom vocabulary items. Each entry must contain a phrase and * can optionally contain a displayAs and/or a weight.

*/ inline BatchCreateCustomVocabularyItemRequest& WithCustomVocabularyItemList(const Aws::Vector& value) { SetCustomVocabularyItemList(value); return *this;} /** *

A list of new custom vocabulary items. Each entry must contain a phrase and * can optionally contain a displayAs and/or a weight.

*/ inline BatchCreateCustomVocabularyItemRequest& WithCustomVocabularyItemList(Aws::Vector&& value) { SetCustomVocabularyItemList(std::move(value)); return *this;} /** *

A list of new custom vocabulary items. Each entry must contain a phrase and * can optionally contain a displayAs and/or a weight.

*/ inline BatchCreateCustomVocabularyItemRequest& AddCustomVocabularyItemList(const NewCustomVocabularyItem& value) { m_customVocabularyItemListHasBeenSet = true; m_customVocabularyItemList.push_back(value); return *this; } /** *

A list of new custom vocabulary items. Each entry must contain a phrase and * can optionally contain a displayAs and/or a weight.

*/ inline BatchCreateCustomVocabularyItemRequest& AddCustomVocabularyItemList(NewCustomVocabularyItem&& value) { m_customVocabularyItemListHasBeenSet = true; m_customVocabularyItemList.push_back(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::Vector m_customVocabularyItemList; bool m_customVocabularyItemListHasBeenSet = false; }; } // namespace Model } // namespace LexModelsV2 } // namespace Aws