/** * 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 * GetHostedZoneCount request.

See Also:

AWS * API Reference

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

The total number of public and private hosted zones that are associated with * the current AWS account.

*/ inline long long GetHostedZoneCount() const{ return m_hostedZoneCount; } /** *

The total number of public and private hosted zones that are associated with * the current AWS account.

*/ inline void SetHostedZoneCount(long long value) { m_hostedZoneCount = value; } /** *

The total number of public and private hosted zones that are associated with * the current AWS account.

*/ inline GetHostedZoneCountResult& WithHostedZoneCount(long long value) { SetHostedZoneCount(value); return *this;} private: long long m_hostedZoneCount; }; } // namespace Model } // namespace Route53 } // namespace Aws