/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace LexModelsV2 { namespace Model { /** *

Provides the parameters required for importing a custom * vocabulary.

See Also:

AWS * API Reference

*/ class CustomVocabularyImportSpecification { public: AWS_LEXMODELSV2_API CustomVocabularyImportSpecification(); AWS_LEXMODELSV2_API CustomVocabularyImportSpecification(Aws::Utils::Json::JsonView jsonValue); AWS_LEXMODELSV2_API CustomVocabularyImportSpecification& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_LEXMODELSV2_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The identifier of the bot to import the custom vocabulary to.

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

The identifier of the bot to import the custom vocabulary to.

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

The identifier of the bot to import the custom vocabulary to.

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

The identifier of the bot to import the custom vocabulary to.

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

The identifier of the bot to import the custom vocabulary to.

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

The identifier of the bot to import the custom vocabulary to.

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

The identifier of the bot to import the custom vocabulary to.

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

The identifier of the bot to import the custom vocabulary to.

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

The version of the bot to import the custom vocabulary to.

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

The version of the bot to import the custom vocabulary to.

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

The version of the bot to import the custom vocabulary to.

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

The version of the bot to import the custom vocabulary to.

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

The version of the bot to import the custom vocabulary to.

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

The version of the bot to import the custom vocabulary to.

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

The version of the bot to import the custom vocabulary to.

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

The version of the bot to import the custom vocabulary to.

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

The identifier of the local to import the custom vocabulary to. The value * must be en_GB.

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

The identifier of the local to import the custom vocabulary to. The value * must be en_GB.

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

The identifier of the local to import the custom vocabulary to. The value * must be en_GB.

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

The identifier of the local to import the custom vocabulary to. The value * must be en_GB.

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

The identifier of the local to import the custom vocabulary to. The value * must be en_GB.

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

The identifier of the local to import the custom vocabulary to. The value * must be en_GB.

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

The identifier of the local to import the custom vocabulary to. The value * must be en_GB.

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

The identifier of the local to import the custom vocabulary to. The value * must be en_GB.

*/ inline CustomVocabularyImportSpecification& WithLocaleId(const char* value) { SetLocaleId(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; }; } // namespace Model } // namespace LexModelsV2 } // namespace Aws