/** * 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 { /** *

The unique entry identifier for the custom vocabulary items.

See * Also:

AWS * API Reference

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

The unique item identifier for the custom vocabulary items.

*/ inline const Aws::String& GetItemId() const{ return m_itemId; } /** *

The unique item identifier for the custom vocabulary items.

*/ inline bool ItemIdHasBeenSet() const { return m_itemIdHasBeenSet; } /** *

The unique item identifier for the custom vocabulary items.

*/ inline void SetItemId(const Aws::String& value) { m_itemIdHasBeenSet = true; m_itemId = value; } /** *

The unique item identifier for the custom vocabulary items.

*/ inline void SetItemId(Aws::String&& value) { m_itemIdHasBeenSet = true; m_itemId = std::move(value); } /** *

The unique item identifier for the custom vocabulary items.

*/ inline void SetItemId(const char* value) { m_itemIdHasBeenSet = true; m_itemId.assign(value); } /** *

The unique item identifier for the custom vocabulary items.

*/ inline CustomVocabularyEntryId& WithItemId(const Aws::String& value) { SetItemId(value); return *this;} /** *

The unique item identifier for the custom vocabulary items.

*/ inline CustomVocabularyEntryId& WithItemId(Aws::String&& value) { SetItemId(std::move(value)); return *this;} /** *

The unique item identifier for the custom vocabulary items.

*/ inline CustomVocabularyEntryId& WithItemId(const char* value) { SetItemId(value); return *this;} private: Aws::String m_itemId; bool m_itemIdHasBeenSet = false; }; } // namespace Model } // namespace LexModelsV2 } // namespace Aws