/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Provides statistical information about the FAQ questions and answers
* contained in an index.See Also:
AWS
* API Reference
The total number of FAQ questions and answers contained in the index.
*/ inline int GetIndexedQuestionAnswersCount() const{ return m_indexedQuestionAnswersCount; } /** *The total number of FAQ questions and answers contained in the index.
*/ inline bool IndexedQuestionAnswersCountHasBeenSet() const { return m_indexedQuestionAnswersCountHasBeenSet; } /** *The total number of FAQ questions and answers contained in the index.
*/ inline void SetIndexedQuestionAnswersCount(int value) { m_indexedQuestionAnswersCountHasBeenSet = true; m_indexedQuestionAnswersCount = value; } /** *The total number of FAQ questions and answers contained in the index.
*/ inline FaqStatistics& WithIndexedQuestionAnswersCount(int value) { SetIndexedQuestionAnswersCount(value); return *this;} private: int m_indexedQuestionAnswersCount; bool m_indexedQuestionAnswersCountHasBeenSet = false; }; } // namespace Model } // namespace kendra } // namespace Aws