AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
40
41
43
49 inline const AccountLimit& GetLimit() const{ return m_limit; }
50 inline void SetLimit(const AccountLimit& value) { m_limit = value; }
51 inline void SetLimit(AccountLimit&& value) { m_limit = std::move(value); }
52 inline GetAccountLimitResult& WithLimit(const AccountLimit& value) { SetLimit(value); return *this;}
53 inline GetAccountLimitResult& WithLimit(AccountLimit&& value) { SetLimit(std::move(value)); return *this;}
55
57
64 inline long long GetCount() const{ return m_count; }
65 inline void SetCount(long long value) { 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 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
73 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
74 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
75 inline GetAccountLimitResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
76 inline GetAccountLimitResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
77 inline GetAccountLimitResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
79 private:
80
81 AccountLimit m_limit;
82
83 long long m_count;
84
85 Aws::String m_requestId;
86 };
87
88} // namespace Model
89} // namespace Route53
90} // namespace Aws
AWS_ROUTE53_API GetAccountLimitResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
GetAccountLimitResult & WithRequestId(const char *value)
GetAccountLimitResult & WithLimit(const AccountLimit &value)
GetAccountLimitResult & WithCount(long long value)
AWS_ROUTE53_API GetAccountLimitResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
GetAccountLimitResult & WithRequestId(const Aws::String &value)
GetAccountLimitResult & WithRequestId(Aws::String &&value)
GetAccountLimitResult & WithLimit(AccountLimit &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Xml::XmlDocument XmlDocument