/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace GuardDuty { namespace Model { class AWS_GUARDDUTY_API GetFindingsStatisticsResult { public: GetFindingsStatisticsResult(); GetFindingsStatisticsResult(const Aws::AmazonWebServiceResult& result); GetFindingsStatisticsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The finding statistics object.

*/ inline const FindingStatistics& GetFindingStatistics() const{ return m_findingStatistics; } /** *

The finding statistics object.

*/ inline void SetFindingStatistics(const FindingStatistics& value) { m_findingStatistics = value; } /** *

The finding statistics object.

*/ inline void SetFindingStatistics(FindingStatistics&& value) { m_findingStatistics = std::move(value); } /** *

The finding statistics object.

*/ inline GetFindingsStatisticsResult& WithFindingStatistics(const FindingStatistics& value) { SetFindingStatistics(value); return *this;} /** *

The finding statistics object.

*/ inline GetFindingsStatisticsResult& WithFindingStatistics(FindingStatistics&& value) { SetFindingStatistics(std::move(value)); return *this;} private: FindingStatistics m_findingStatistics; }; } // namespace Model } // namespace GuardDuty } // namespace Aws