/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about the number of open reactive and proactive insights that
* can be used to gauge the health of your system. See Also:
AWS
* API Reference
An integer that specifies the number of open proactive insights in your * Amazon Web Services account.
*/ inline int GetOpenProactiveInsights() const{ return m_openProactiveInsights; } /** *An integer that specifies the number of open proactive insights in your * Amazon Web Services account.
*/ inline bool OpenProactiveInsightsHasBeenSet() const { return m_openProactiveInsightsHasBeenSet; } /** *An integer that specifies the number of open proactive insights in your * Amazon Web Services account.
*/ inline void SetOpenProactiveInsights(int value) { m_openProactiveInsightsHasBeenSet = true; m_openProactiveInsights = value; } /** *An integer that specifies the number of open proactive insights in your * Amazon Web Services account.
*/ inline AccountInsightHealth& WithOpenProactiveInsights(int value) { SetOpenProactiveInsights(value); return *this;} /** *An integer that specifies the number of open reactive insights in your Amazon * Web Services account.
*/ inline int GetOpenReactiveInsights() const{ return m_openReactiveInsights; } /** *An integer that specifies the number of open reactive insights in your Amazon * Web Services account.
*/ inline bool OpenReactiveInsightsHasBeenSet() const { return m_openReactiveInsightsHasBeenSet; } /** *An integer that specifies the number of open reactive insights in your Amazon * Web Services account.
*/ inline void SetOpenReactiveInsights(int value) { m_openReactiveInsightsHasBeenSet = true; m_openReactiveInsights = value; } /** *An integer that specifies the number of open reactive insights in your Amazon * Web Services account.
*/ inline AccountInsightHealth& WithOpenReactiveInsights(int value) { SetOpenReactiveInsights(value); return *this;} private: int m_openProactiveInsights; bool m_openProactiveInsightsHasBeenSet = false; int m_openReactiveInsights; bool m_openReactiveInsightsHasBeenSet = false; }; } // namespace Model } // namespace DevOpsGuru } // namespace Aws