AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetHostedZoneLimitResult.h
1
6#pragma once
7#include <aws/route53/Route53_EXPORTS.h>
8#include <aws/route53/model/HostedZoneLimit.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:
37 AWS_ROUTE53_API GetHostedZoneLimitResult();
40
41
43
49 inline const HostedZoneLimit& GetLimit() const{ return m_limit; }
50 inline void SetLimit(const HostedZoneLimit& value) { m_limit = value; }
51 inline void SetLimit(HostedZoneLimit&& value) { m_limit = std::move(value); }
52 inline GetHostedZoneLimitResult& WithLimit(const HostedZoneLimit& value) { SetLimit(value); return *this;}
53 inline GetHostedZoneLimitResult& WithLimit(HostedZoneLimit&& value) { SetLimit(std::move(value)); return *this;}
55
57
63 inline long long GetCount() const{ return m_count; }
64 inline void SetCount(long long value) { m_count = value; }
65 inline GetHostedZoneLimitResult& WithCount(long long value) { SetCount(value); return *this;}
67
69
70 inline const Aws::String& GetRequestId() const{ return m_requestId; }
71 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
72 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
73 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
74 inline GetHostedZoneLimitResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
75 inline GetHostedZoneLimitResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
76 inline GetHostedZoneLimitResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
78 private:
79
80 HostedZoneLimit m_limit;
81
82 long long m_count;
83
84 Aws::String m_requestId;
85 };
86
87} // namespace Model
88} // namespace Route53
89} // namespace Aws
GetHostedZoneLimitResult & WithLimit(HostedZoneLimit &&value)
GetHostedZoneLimitResult & WithRequestId(const Aws::String &value)
GetHostedZoneLimitResult & WithRequestId(Aws::String &&value)
AWS_ROUTE53_API GetHostedZoneLimitResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
GetHostedZoneLimitResult & WithCount(long long value)
AWS_ROUTE53_API GetHostedZoneLimitResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
GetHostedZoneLimitResult & WithLimit(const HostedZoneLimit &value)
GetHostedZoneLimitResult & WithRequestId(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Xml::XmlDocument XmlDocument