/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about a document attributeSee Also:
AWS API
* Reference
The unique key for the document attribute.
*/ inline const Aws::String& GetDocumentAttributeKey() const{ return m_documentAttributeKey; } /** *The unique key for the document attribute.
*/ inline bool DocumentAttributeKeyHasBeenSet() const { return m_documentAttributeKeyHasBeenSet; } /** *The unique key for the document attribute.
*/ inline void SetDocumentAttributeKey(const Aws::String& value) { m_documentAttributeKeyHasBeenSet = true; m_documentAttributeKey = value; } /** *The unique key for the document attribute.
*/ inline void SetDocumentAttributeKey(Aws::String&& value) { m_documentAttributeKeyHasBeenSet = true; m_documentAttributeKey = std::move(value); } /** *The unique key for the document attribute.
*/ inline void SetDocumentAttributeKey(const char* value) { m_documentAttributeKeyHasBeenSet = true; m_documentAttributeKey.assign(value); } /** *The unique key for the document attribute.
*/ inline Facet& WithDocumentAttributeKey(const Aws::String& value) { SetDocumentAttributeKey(value); return *this;} /** *The unique key for the document attribute.
*/ inline Facet& WithDocumentAttributeKey(Aws::String&& value) { SetDocumentAttributeKey(std::move(value)); return *this;} /** *The unique key for the document attribute.
*/ inline Facet& WithDocumentAttributeKey(const char* value) { SetDocumentAttributeKey(value); return *this;} private: Aws::String m_documentAttributeKey; bool m_documentAttributeKeyHasBeenSet; }; } // namespace Model } // namespace kendra } // namespace Aws