This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-kendra/include/aws/kendra/model/FacetResult.h

152 lines
6.3 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/kendra/Kendra_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/kendra/model/DocumentAttributeValueCountPair.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace kendra
{
namespace Model
{
/**
* <p>The facet values for the documents in the response.</p><p><h3>See Also:</h3>
* <a
* href="http://docs.aws.amazon.com/goto/WebAPI/kendra-2019-02-03/FacetResult">AWS
* API Reference</a></p>
*/
class AWS_KENDRA_API FacetResult
{
public:
FacetResult();
FacetResult(Aws::Utils::Json::JsonView jsonValue);
FacetResult& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The key for the facet values. This is the same as the
* <code>DocumentAttributeKey</code> provided in the query.</p>
*/
inline const Aws::String& GetDocumentAttributeKey() const{ return m_documentAttributeKey; }
/**
* <p>The key for the facet values. This is the same as the
* <code>DocumentAttributeKey</code> provided in the query.</p>
*/
inline bool DocumentAttributeKeyHasBeenSet() const { return m_documentAttributeKeyHasBeenSet; }
/**
* <p>The key for the facet values. This is the same as the
* <code>DocumentAttributeKey</code> provided in the query.</p>
*/
inline void SetDocumentAttributeKey(const Aws::String& value) { m_documentAttributeKeyHasBeenSet = true; m_documentAttributeKey = value; }
/**
* <p>The key for the facet values. This is the same as the
* <code>DocumentAttributeKey</code> provided in the query.</p>
*/
inline void SetDocumentAttributeKey(Aws::String&& value) { m_documentAttributeKeyHasBeenSet = true; m_documentAttributeKey = std::move(value); }
/**
* <p>The key for the facet values. This is the same as the
* <code>DocumentAttributeKey</code> provided in the query.</p>
*/
inline void SetDocumentAttributeKey(const char* value) { m_documentAttributeKeyHasBeenSet = true; m_documentAttributeKey.assign(value); }
/**
* <p>The key for the facet values. This is the same as the
* <code>DocumentAttributeKey</code> provided in the query.</p>
*/
inline FacetResult& WithDocumentAttributeKey(const Aws::String& value) { SetDocumentAttributeKey(value); return *this;}
/**
* <p>The key for the facet values. This is the same as the
* <code>DocumentAttributeKey</code> provided in the query.</p>
*/
inline FacetResult& WithDocumentAttributeKey(Aws::String&& value) { SetDocumentAttributeKey(std::move(value)); return *this;}
/**
* <p>The key for the facet values. This is the same as the
* <code>DocumentAttributeKey</code> provided in the query.</p>
*/
inline FacetResult& WithDocumentAttributeKey(const char* value) { SetDocumentAttributeKey(value); return *this;}
/**
* <p>An array of key/value pairs, where the key is the value of the attribute and
* the count is the number of documents that share the key value.</p>
*/
inline const Aws::Vector<DocumentAttributeValueCountPair>& GetDocumentAttributeValueCountPairs() const{ return m_documentAttributeValueCountPairs; }
/**
* <p>An array of key/value pairs, where the key is the value of the attribute and
* the count is the number of documents that share the key value.</p>
*/
inline bool DocumentAttributeValueCountPairsHasBeenSet() const { return m_documentAttributeValueCountPairsHasBeenSet; }
/**
* <p>An array of key/value pairs, where the key is the value of the attribute and
* the count is the number of documents that share the key value.</p>
*/
inline void SetDocumentAttributeValueCountPairs(const Aws::Vector<DocumentAttributeValueCountPair>& value) { m_documentAttributeValueCountPairsHasBeenSet = true; m_documentAttributeValueCountPairs = value; }
/**
* <p>An array of key/value pairs, where the key is the value of the attribute and
* the count is the number of documents that share the key value.</p>
*/
inline void SetDocumentAttributeValueCountPairs(Aws::Vector<DocumentAttributeValueCountPair>&& value) { m_documentAttributeValueCountPairsHasBeenSet = true; m_documentAttributeValueCountPairs = std::move(value); }
/**
* <p>An array of key/value pairs, where the key is the value of the attribute and
* the count is the number of documents that share the key value.</p>
*/
inline FacetResult& WithDocumentAttributeValueCountPairs(const Aws::Vector<DocumentAttributeValueCountPair>& value) { SetDocumentAttributeValueCountPairs(value); return *this;}
/**
* <p>An array of key/value pairs, where the key is the value of the attribute and
* the count is the number of documents that share the key value.</p>
*/
inline FacetResult& WithDocumentAttributeValueCountPairs(Aws::Vector<DocumentAttributeValueCountPair>&& value) { SetDocumentAttributeValueCountPairs(std::move(value)); return *this;}
/**
* <p>An array of key/value pairs, where the key is the value of the attribute and
* the count is the number of documents that share the key value.</p>
*/
inline FacetResult& AddDocumentAttributeValueCountPairs(const DocumentAttributeValueCountPair& value) { m_documentAttributeValueCountPairsHasBeenSet = true; m_documentAttributeValueCountPairs.push_back(value); return *this; }
/**
* <p>An array of key/value pairs, where the key is the value of the attribute and
* the count is the number of documents that share the key value.</p>
*/
inline FacetResult& AddDocumentAttributeValueCountPairs(DocumentAttributeValueCountPair&& value) { m_documentAttributeValueCountPairsHasBeenSet = true; m_documentAttributeValueCountPairs.push_back(std::move(value)); return *this; }
private:
Aws::String m_documentAttributeKey;
bool m_documentAttributeKeyHasBeenSet;
Aws::Vector<DocumentAttributeValueCountPair> m_documentAttributeValueCountPairs;
bool m_documentAttributeValueCountPairsHasBeenSet;
};
} // namespace Model
} // namespace kendra
} // namespace Aws