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/FaqStatistics.h

68 lines
1.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/kendra/Kendra_EXPORTS.h>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace kendra
{
namespace Model
{
/**
* <p>Provides statistical information about the FAQ questions and answers
* contained in an index.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/kendra-2019-02-03/FaqStatistics">AWS
* API Reference</a></p>
*/
class AWS_KENDRA_API FaqStatistics
{
public:
FaqStatistics();
FaqStatistics(Aws::Utils::Json::JsonView jsonValue);
FaqStatistics& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The total number of FAQ questions and answers contained in the index.</p>
*/
inline int GetIndexedQuestionAnswersCount() const{ return m_indexedQuestionAnswersCount; }
/**
* <p>The total number of FAQ questions and answers contained in the index.</p>
*/
inline bool IndexedQuestionAnswersCountHasBeenSet() const { return m_indexedQuestionAnswersCountHasBeenSet; }
/**
* <p>The total number of FAQ questions and answers contained in the index.</p>
*/
inline void SetIndexedQuestionAnswersCount(int value) { m_indexedQuestionAnswersCountHasBeenSet = true; m_indexedQuestionAnswersCount = value; }
/**
* <p>The total number of FAQ questions and answers contained in the index.</p>
*/
inline FaqStatistics& WithIndexedQuestionAnswersCount(int value) { SetIndexedQuestionAnswersCount(value); return *this;}
private:
int m_indexedQuestionAnswersCount;
bool m_indexedQuestionAnswersCountHasBeenSet;
};
} // namespace Model
} // namespace kendra
} // namespace Aws