/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace Route53 { namespace Model { /** *

A complex type that contains the response to a * GetHealthCheckCount request.

See Also:

AWS * API Reference

*/ class AWS_ROUTE53_API GetHealthCheckCountResult { public: GetHealthCheckCountResult(); GetHealthCheckCountResult(const Aws::AmazonWebServiceResult& result); GetHealthCheckCountResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

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