This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-route53/include/aws/route53/model/GetTrafficPolicyResult.h

74 lines
2.1 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/route53/Route53_EXPORTS.h>
#include <aws/route53/model/TrafficPolicy.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Xml
{
class XmlDocument;
} // namespace Xml
} // namespace Utils
namespace Route53
{
namespace Model
{
/**
* <p>A complex type that contains the response information for the
* request.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetTrafficPolicyResponse">AWS
* API Reference</a></p>
*/
class AWS_ROUTE53_API GetTrafficPolicyResult
{
public:
GetTrafficPolicyResult();
GetTrafficPolicyResult(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
GetTrafficPolicyResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
/**
* <p>A complex type that contains settings for the specified traffic policy.</p>
*/
inline const TrafficPolicy& GetTrafficPolicy() const{ return m_trafficPolicy; }
/**
* <p>A complex type that contains settings for the specified traffic policy.</p>
*/
inline void SetTrafficPolicy(const TrafficPolicy& value) { m_trafficPolicy = value; }
/**
* <p>A complex type that contains settings for the specified traffic policy.</p>
*/
inline void SetTrafficPolicy(TrafficPolicy&& value) { m_trafficPolicy = std::move(value); }
/**
* <p>A complex type that contains settings for the specified traffic policy.</p>
*/
inline GetTrafficPolicyResult& WithTrafficPolicy(const TrafficPolicy& value) { SetTrafficPolicy(value); return *this;}
/**
* <p>A complex type that contains settings for the specified traffic policy.</p>
*/
inline GetTrafficPolicyResult& WithTrafficPolicy(TrafficPolicy&& value) { SetTrafficPolicy(std::move(value)); return *this;}
private:
TrafficPolicy m_trafficPolicy;
};
} // namespace Model
} // namespace Route53
} // namespace Aws