/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include 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
The number of traffic policy instances that are associated with the current * Amazon Web Services account.
*/ inline int GetTrafficPolicyInstanceCount() const{ return m_trafficPolicyInstanceCount; } /** *The number of traffic policy instances that are associated with the current * Amazon Web Services account.
*/ inline void SetTrafficPolicyInstanceCount(int value) { m_trafficPolicyInstanceCount = value; } /** *The number of traffic policy instances that are associated with the current * Amazon Web Services account.
*/ inline GetTrafficPolicyInstanceCountResult& WithTrafficPolicyInstanceCount(int value) { SetTrafficPolicyInstanceCount(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetTrafficPolicyInstanceCountResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetTrafficPolicyInstanceCountResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetTrafficPolicyInstanceCountResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: int m_trafficPolicyInstanceCount; Aws::String m_requestId; }; } // namespace Model } // namespace Route53 } // namespace Aws