AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
GetAccountLimitResult.h
1
6#pragma once
7#include <aws/route53/Route53_EXPORTS.h>
8#include <aws/route53/model/AccountLimit.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 GetAccountLimitResult() = default;
40
41
43
49 inline const AccountLimit& GetLimit() const { return m_limit; }
50 template<typename LimitT = AccountLimit>
51 void SetLimit(LimitT&& value) { m_limitHasBeenSet = true; m_limit = std::forward<LimitT>(value); }
52 template<typename LimitT = AccountLimit>
53 GetAccountLimitResult& WithLimit(LimitT&& value) { SetLimit(std::forward<LimitT>(value)); return *this;}
55
57
64 inline long long GetCount() const { return m_count; }
65 inline void SetCount(long long value) { m_countHasBeenSet = true; m_count = value; }
66 inline GetAccountLimitResult& WithCount(long long value) { SetCount(value); return *this;}
68
70
71 inline const Aws::String& GetRequestId() const { return m_requestId; }
72 template<typename RequestIdT = Aws::String>
73 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
74 template<typename RequestIdT = Aws::String>
75 GetAccountLimitResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
77 private:
78
79 AccountLimit m_limit;
80 bool m_limitHasBeenSet = false;
81
82 long long m_count{0};
83 bool m_countHasBeenSet = false;
84
85 Aws::String m_requestId;
86 bool m_requestIdHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace Route53
91} // namespace Aws
AWS_ROUTE53_API GetAccountLimitResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
GetAccountLimitResult & WithRequestId(RequestIdT &&value)
GetAccountLimitResult & WithLimit(LimitT &&value)
GetAccountLimitResult & WithCount(long long value)
AWS_ROUTE53_API GetAccountLimitResult()=default
AWS_ROUTE53_API GetAccountLimitResult & 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