/** * 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 kendra { namespace Model { /** *

Information about a document attribute

See Also:

AWS API * Reference

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

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