AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
UpdateProfileResult.h
1
6#pragma once
7#include <aws/b2bi/B2BI_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/b2bi/model/Logging.h>
10#include <aws/core/utils/DateTime.h>
11#include <utility>
12
13namespace Aws
14{
15template<typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils
19{
20namespace Json
21{
22 class JsonValue;
23} // namespace Json
24} // namespace Utils
25namespace B2BI
26{
27namespace Model
28{
30 {
31 public:
32 AWS_B2BI_API UpdateProfileResult() = default;
35
36
38
41 inline const Aws::String& GetProfileId() const { return m_profileId; }
42 template<typename ProfileIdT = Aws::String>
43 void SetProfileId(ProfileIdT&& value) { m_profileIdHasBeenSet = true; m_profileId = std::forward<ProfileIdT>(value); }
44 template<typename ProfileIdT = Aws::String>
45 UpdateProfileResult& WithProfileId(ProfileIdT&& value) { SetProfileId(std::forward<ProfileIdT>(value)); return *this;}
47
49
52 inline const Aws::String& GetProfileArn() const { return m_profileArn; }
53 template<typename ProfileArnT = Aws::String>
54 void SetProfileArn(ProfileArnT&& value) { m_profileArnHasBeenSet = true; m_profileArn = std::forward<ProfileArnT>(value); }
55 template<typename ProfileArnT = Aws::String>
56 UpdateProfileResult& WithProfileArn(ProfileArnT&& value) { SetProfileArn(std::forward<ProfileArnT>(value)); return *this;}
58
60
63 inline const Aws::String& GetName() const { return m_name; }
64 template<typename NameT = Aws::String>
65 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
66 template<typename NameT = Aws::String>
67 UpdateProfileResult& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
69
71
74 inline const Aws::String& GetEmail() const { return m_email; }
75 template<typename EmailT = Aws::String>
76 void SetEmail(EmailT&& value) { m_emailHasBeenSet = true; m_email = std::forward<EmailT>(value); }
77 template<typename EmailT = Aws::String>
78 UpdateProfileResult& WithEmail(EmailT&& value) { SetEmail(std::forward<EmailT>(value)); return *this;}
80
82
85 inline const Aws::String& GetPhone() const { return m_phone; }
86 template<typename PhoneT = Aws::String>
87 void SetPhone(PhoneT&& value) { m_phoneHasBeenSet = true; m_phone = std::forward<PhoneT>(value); }
88 template<typename PhoneT = Aws::String>
89 UpdateProfileResult& WithPhone(PhoneT&& value) { SetPhone(std::forward<PhoneT>(value)); return *this;}
91
93
96 inline const Aws::String& GetBusinessName() const { return m_businessName; }
97 template<typename BusinessNameT = Aws::String>
98 void SetBusinessName(BusinessNameT&& value) { m_businessNameHasBeenSet = true; m_businessName = std::forward<BusinessNameT>(value); }
99 template<typename BusinessNameT = Aws::String>
100 UpdateProfileResult& WithBusinessName(BusinessNameT&& value) { SetBusinessName(std::forward<BusinessNameT>(value)); return *this;}
102
104
107 inline Logging GetLogging() const { return m_logging; }
108 inline void SetLogging(Logging value) { m_loggingHasBeenSet = true; m_logging = value; }
109 inline UpdateProfileResult& WithLogging(Logging value) { SetLogging(value); return *this;}
111
113
116 inline const Aws::String& GetLogGroupName() const { return m_logGroupName; }
117 template<typename LogGroupNameT = Aws::String>
118 void SetLogGroupName(LogGroupNameT&& value) { m_logGroupNameHasBeenSet = true; m_logGroupName = std::forward<LogGroupNameT>(value); }
119 template<typename LogGroupNameT = Aws::String>
120 UpdateProfileResult& WithLogGroupName(LogGroupNameT&& value) { SetLogGroupName(std::forward<LogGroupNameT>(value)); return *this;}
122
124
127 inline const Aws::Utils::DateTime& GetCreatedAt() const { return m_createdAt; }
128 template<typename CreatedAtT = Aws::Utils::DateTime>
129 void SetCreatedAt(CreatedAtT&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::forward<CreatedAtT>(value); }
130 template<typename CreatedAtT = Aws::Utils::DateTime>
131 UpdateProfileResult& WithCreatedAt(CreatedAtT&& value) { SetCreatedAt(std::forward<CreatedAtT>(value)); return *this;}
133
135
138 inline const Aws::Utils::DateTime& GetModifiedAt() const { return m_modifiedAt; }
139 template<typename ModifiedAtT = Aws::Utils::DateTime>
140 void SetModifiedAt(ModifiedAtT&& value) { m_modifiedAtHasBeenSet = true; m_modifiedAt = std::forward<ModifiedAtT>(value); }
141 template<typename ModifiedAtT = Aws::Utils::DateTime>
142 UpdateProfileResult& WithModifiedAt(ModifiedAtT&& value) { SetModifiedAt(std::forward<ModifiedAtT>(value)); return *this;}
144
146
147 inline const Aws::String& GetRequestId() const { return m_requestId; }
148 template<typename RequestIdT = Aws::String>
149 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
150 template<typename RequestIdT = Aws::String>
151 UpdateProfileResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
153 private:
154
155 Aws::String m_profileId;
156 bool m_profileIdHasBeenSet = false;
157
158 Aws::String m_profileArn;
159 bool m_profileArnHasBeenSet = false;
160
161 Aws::String m_name;
162 bool m_nameHasBeenSet = false;
163
164 Aws::String m_email;
165 bool m_emailHasBeenSet = false;
166
167 Aws::String m_phone;
168 bool m_phoneHasBeenSet = false;
169
170 Aws::String m_businessName;
171 bool m_businessNameHasBeenSet = false;
172
173 Logging m_logging{Logging::NOT_SET};
174 bool m_loggingHasBeenSet = false;
175
176 Aws::String m_logGroupName;
177 bool m_logGroupNameHasBeenSet = false;
178
179 Aws::Utils::DateTime m_createdAt{};
180 bool m_createdAtHasBeenSet = false;
181
182 Aws::Utils::DateTime m_modifiedAt{};
183 bool m_modifiedAtHasBeenSet = false;
184
185 Aws::String m_requestId;
186 bool m_requestIdHasBeenSet = false;
187 };
188
189} // namespace Model
190} // namespace B2BI
191} // namespace Aws
const Aws::String & GetProfileId() const
const Aws::String & GetBusinessName() const
const Aws::String & GetLogGroupName() const
const Aws::Utils::DateTime & GetModifiedAt() const
void SetBusinessName(BusinessNameT &&value)
UpdateProfileResult & WithName(NameT &&value)
UpdateProfileResult & WithBusinessName(BusinessNameT &&value)
AWS_B2BI_API UpdateProfileResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
const Aws::Utils::DateTime & GetCreatedAt() const
UpdateProfileResult & WithLogging(Logging value)
const Aws::String & GetRequestId() const
UpdateProfileResult & WithPhone(PhoneT &&value)
UpdateProfileResult & WithProfileArn(ProfileArnT &&value)
UpdateProfileResult & WithRequestId(RequestIdT &&value)
UpdateProfileResult & WithCreatedAt(CreatedAtT &&value)
UpdateProfileResult & WithEmail(EmailT &&value)
UpdateProfileResult & WithLogGroupName(LogGroupNameT &&value)
void SetLogGroupName(LogGroupNameT &&value)
UpdateProfileResult & WithProfileId(ProfileIdT &&value)
AWS_B2BI_API UpdateProfileResult()=default
const Aws::String & GetProfileArn() const
UpdateProfileResult & WithModifiedAt(ModifiedAtT &&value)
AWS_B2BI_API UpdateProfileResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue