/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #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 requested limit.

See Also:

* AWS * API Reference

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

The current setting for the limit on hosted zones that you can associate with * the specified reusable delegation set.

*/ inline const ReusableDelegationSetLimit& GetLimit() const{ return m_limit; } /** *

The current setting for the limit on hosted zones that you can associate with * the specified reusable delegation set.

*/ inline void SetLimit(const ReusableDelegationSetLimit& value) { m_limit = value; } /** *

The current setting for the limit on hosted zones that you can associate with * the specified reusable delegation set.

*/ inline void SetLimit(ReusableDelegationSetLimit&& value) { m_limit = std::move(value); } /** *

The current setting for the limit on hosted zones that you can associate with * the specified reusable delegation set.

*/ inline GetReusableDelegationSetLimitResult& WithLimit(const ReusableDelegationSetLimit& value) { SetLimit(value); return *this;} /** *

The current setting for the limit on hosted zones that you can associate with * the specified reusable delegation set.

*/ inline GetReusableDelegationSetLimitResult& WithLimit(ReusableDelegationSetLimit&& value) { SetLimit(std::move(value)); return *this;} /** *

The current number of hosted zones that you can associate with the specified * reusable delegation set.

*/ inline long long GetCount() const{ return m_count; } /** *

The current number of hosted zones that you can associate with the specified * reusable delegation set.

*/ inline void SetCount(long long value) { m_count = value; } /** *

The current number of hosted zones that you can associate with the specified * reusable delegation set.

*/ inline GetReusableDelegationSetLimitResult& WithCount(long long value) { SetCount(value); return *this;} private: ReusableDelegationSetLimit m_limit; long long m_count; }; } // namespace Model } // namespace Route53 } // namespace Aws