AWS SDK for C++

AWS SDK for C++ Version 1.11.749

Loading...
Searching...
No Matches
DescribeAccountAttributesResult.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/dms/DatabaseMigrationService_EXPORTS.h>
10#include <aws/dms/model/AccountQuota.h>
11
12#include <utility>
13
14namespace Aws {
15template <typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils {
19namespace Json {
20class JsonValue;
21} // namespace Json
22} // namespace Utils
23namespace DatabaseMigrationService {
24namespace Model {
31 public:
32 AWS_DATABASEMIGRATIONSERVICE_API DescribeAccountAttributesResult() = default;
34 AWS_DATABASEMIGRATIONSERVICE_API DescribeAccountAttributesResult& operator=(
36
38
41 inline const Aws::Vector<AccountQuota>& GetAccountQuotas() const { return m_accountQuotas; }
42 template <typename AccountQuotasT = Aws::Vector<AccountQuota>>
43 void SetAccountQuotas(AccountQuotasT&& value) {
44 m_accountQuotasHasBeenSet = true;
45 m_accountQuotas = std::forward<AccountQuotasT>(value);
46 }
47 template <typename AccountQuotasT = Aws::Vector<AccountQuota>>
49 SetAccountQuotas(std::forward<AccountQuotasT>(value));
50 return *this;
51 }
52 template <typename AccountQuotasT = AccountQuota>
54 m_accountQuotasHasBeenSet = true;
55 m_accountQuotas.emplace_back(std::forward<AccountQuotasT>(value));
56 return *this;
57 }
59
61
74 inline const Aws::String& GetUniqueAccountIdentifier() const { return m_uniqueAccountIdentifier; }
75 template <typename UniqueAccountIdentifierT = Aws::String>
76 void SetUniqueAccountIdentifier(UniqueAccountIdentifierT&& value) {
77 m_uniqueAccountIdentifierHasBeenSet = true;
78 m_uniqueAccountIdentifier = std::forward<UniqueAccountIdentifierT>(value);
79 }
80 template <typename UniqueAccountIdentifierT = Aws::String>
82 SetUniqueAccountIdentifier(std::forward<UniqueAccountIdentifierT>(value));
83 return *this;
84 }
86
88
89 inline const Aws::String& GetRequestId() const { return m_requestId; }
90 template <typename RequestIdT = Aws::String>
91 void SetRequestId(RequestIdT&& value) {
92 m_requestIdHasBeenSet = true;
93 m_requestId = std::forward<RequestIdT>(value);
94 }
95 template <typename RequestIdT = Aws::String>
97 SetRequestId(std::forward<RequestIdT>(value));
98 return *this;
99 }
101 private:
102 Aws::Vector<AccountQuota> m_accountQuotas;
103
104 Aws::String m_uniqueAccountIdentifier;
105
106 Aws::String m_requestId;
107 bool m_accountQuotasHasBeenSet = false;
108 bool m_uniqueAccountIdentifierHasBeenSet = false;
109 bool m_requestIdHasBeenSet = false;
110};
111
112} // namespace Model
113} // namespace DatabaseMigrationService
114} // namespace Aws
DescribeAccountAttributesResult & WithAccountQuotas(AccountQuotasT &&value)
DescribeAccountAttributesResult & WithUniqueAccountIdentifier(UniqueAccountIdentifierT &&value)
AWS_DATABASEMIGRATIONSERVICE_API DescribeAccountAttributesResult()=default
AWS_DATABASEMIGRATIONSERVICE_API DescribeAccountAttributesResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
AWS_DATABASEMIGRATIONSERVICE_API DescribeAccountAttributesResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeAccountAttributesResult & AddAccountQuotas(AccountQuotasT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue