/** * 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 information about the resource record sets that * Amazon Route 53 created based on a specified traffic policy.

See * Also:

AWS * API Reference

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

The number of traffic policy instances that are associated with the current * AWS account.

*/ inline int GetTrafficPolicyInstanceCount() const{ return m_trafficPolicyInstanceCount; } /** *

The number of traffic policy instances that are associated with the current * AWS account.

*/ inline void SetTrafficPolicyInstanceCount(int value) { m_trafficPolicyInstanceCount = value; } /** *

The number of traffic policy instances that are associated with the current * AWS account.

*/ inline GetTrafficPolicyInstanceCountResult& WithTrafficPolicyInstanceCount(int value) { SetTrafficPolicyInstanceCount(value); return *this;} private: int m_trafficPolicyInstanceCount; }; } // namespace Model } // namespace Route53 } // namespace Aws