/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The unique entry identifier for the custom vocabulary items.See
* Also:
AWS
* API Reference
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