/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A complex type that contains the response to a
* GetHealthCheckCount request.See Also:
AWS
* API Reference
The number of health checks associated with the current AWS account.
*/ inline long long GetHealthCheckCount() const{ return m_healthCheckCount; } /** *The number of health checks associated with the current AWS account.
*/ inline void SetHealthCheckCount(long long value) { m_healthCheckCount = value; } /** *The number of health checks associated with the current AWS account.
*/ inline GetHealthCheckCountResult& WithHealthCheckCount(long long value) { SetHealthCheckCount(value); return *this;} private: long long m_healthCheckCount; }; } // namespace Model } // namespace Route53 } // namespace Aws