AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdateHostedZoneCommentResult.h
1
6#pragma once
7#include <aws/route53/Route53_EXPORTS.h>
8#include <aws/route53/model/HostedZone.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14template<typename RESULT_TYPE>
15class AmazonWebServiceResult;
16
17namespace Utils
18{
19namespace Xml
20{
21 class XmlDocument;
22} // namespace Xml
23} // namespace Utils
24namespace Route53
25{
26namespace Model
27{
35 {
36 public:
40
41
43
47 inline const HostedZone& GetHostedZone() const{ return m_hostedZone; }
48 inline void SetHostedZone(const HostedZone& value) { m_hostedZone = value; }
49 inline void SetHostedZone(HostedZone&& value) { m_hostedZone = std::move(value); }
50 inline UpdateHostedZoneCommentResult& WithHostedZone(const HostedZone& value) { SetHostedZone(value); return *this;}
51 inline UpdateHostedZoneCommentResult& WithHostedZone(HostedZone&& value) { SetHostedZone(std::move(value)); return *this;}
53
55
56 inline const Aws::String& GetRequestId() const{ return m_requestId; }
57 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
58 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
59 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
60 inline UpdateHostedZoneCommentResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
61 inline UpdateHostedZoneCommentResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
62 inline UpdateHostedZoneCommentResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
64 private:
65
66 HostedZone m_hostedZone;
67
68 Aws::String m_requestId;
69 };
70
71} // namespace Model
72} // namespace Route53
73} // namespace Aws
UpdateHostedZoneCommentResult & WithRequestId(const Aws::String &value)
UpdateHostedZoneCommentResult & WithRequestId(const char *value)
UpdateHostedZoneCommentResult & WithHostedZone(const HostedZone &value)
AWS_ROUTE53_API UpdateHostedZoneCommentResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
UpdateHostedZoneCommentResult & WithHostedZone(HostedZone &&value)
UpdateHostedZoneCommentResult & WithRequestId(Aws::String &&value)
AWS_ROUTE53_API UpdateHostedZoneCommentResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Xml::XmlDocument XmlDocument