/**
* 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
* GetHostedZoneCount request.See Also:
AWS
* API Reference
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