1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #pragma once
7 #include <aws/route53/Route53_EXPORTS.h>
8 #include <aws/route53/model/ChangeInfo.h>
9 #include <utility>
10 
11 namespace Aws
12 {
13 template<typename RESULT_TYPE>
14 class AmazonWebServiceResult;
15 
16 namespace Utils
17 {
18 namespace Xml
19 {
20   class XmlDocument;
21 } // namespace Xml
22 } // namespace Utils
23 namespace Route53
24 {
25 namespace Model
26 {
27   class AWS_ROUTE53_API DisableHostedZoneDNSSECResult
28   {
29   public:
30     DisableHostedZoneDNSSECResult();
31     DisableHostedZoneDNSSECResult(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
32     DisableHostedZoneDNSSECResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
33 
34 
35 
GetChangeInfo()36     inline const ChangeInfo& GetChangeInfo() const{ return m_changeInfo; }
37 
38 
SetChangeInfo(const ChangeInfo & value)39     inline void SetChangeInfo(const ChangeInfo& value) { m_changeInfo = value; }
40 
41 
SetChangeInfo(ChangeInfo && value)42     inline void SetChangeInfo(ChangeInfo&& value) { m_changeInfo = std::move(value); }
43 
44 
WithChangeInfo(const ChangeInfo & value)45     inline DisableHostedZoneDNSSECResult& WithChangeInfo(const ChangeInfo& value) { SetChangeInfo(value); return *this;}
46 
47 
WithChangeInfo(ChangeInfo && value)48     inline DisableHostedZoneDNSSECResult& WithChangeInfo(ChangeInfo&& value) { SetChangeInfo(std::move(value)); return *this;}
49 
50   private:
51 
52     ChangeInfo m_changeInfo;
53   };
54 
55 } // namespace Model
56 } // namespace Route53
57 } // namespace Aws
58