74 lines
2.2 KiB
C++
74 lines
2.2 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 traffic
|
|
* policy.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateTrafficPolicyCommentResponse">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_ROUTE53_API UpdateTrafficPolicyCommentResult
|
|
{
|
|
public:
|
|
UpdateTrafficPolicyCommentResult();
|
|
UpdateTrafficPolicyCommentResult(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
|
|
UpdateTrafficPolicyCommentResult& 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 UpdateTrafficPolicyCommentResult& WithTrafficPolicy(const TrafficPolicy& value) { SetTrafficPolicy(value); return *this;}
|
|
|
|
/**
|
|
* <p>A complex type that contains settings for the specified traffic policy.</p>
|
|
*/
|
|
inline UpdateTrafficPolicyCommentResult& WithTrafficPolicy(TrafficPolicy&& value) { SetTrafficPolicy(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
TrafficPolicy m_trafficPolicy;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Route53
|
|
} // namespace Aws
|