AWS SDK for C++

AWS SDK for C++ Version 1.11.607

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() = default;
40
41
43
49 inline const HostedZoneLimit& GetLimit() const { return m_limit; }
50 template<typename LimitT = HostedZoneLimit>
51 void SetLimit(LimitT&& value) { m_limitHasBeenSet = true; m_limit = std::forward<LimitT>(value); }
52 template<typename LimitT = HostedZoneLimit>
53 GetHostedZoneLimitResult& WithLimit(LimitT&& value) { SetLimit(std::forward<LimitT>(value)); return *this;}
55
57
63 inline long long GetCount() const { return m_count; }
64 inline void SetCount(long long value) { m_countHasBeenSet = true; 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 template<typename RequestIdT = Aws::String>
72 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
73 template<typename RequestIdT = Aws::String>
74 GetHostedZoneLimitResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
76 private:
77
78 HostedZoneLimit m_limit;
79 bool m_limitHasBeenSet = false;
80
81 long long m_count{0};
82 bool m_countHasBeenSet = false;
83
84 Aws::String m_requestId;
85 bool m_requestIdHasBeenSet = false;
86 };
87
88} // namespace Model
89} // namespace Route53
90} // namespace Aws
GetHostedZoneLimitResult & WithLimit(LimitT &&value)
GetHostedZoneLimitResult & WithRequestId(RequestIdT &&value)
AWS_ROUTE53_API GetHostedZoneLimitResult()=default
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)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Xml::XmlDocument XmlDocument