AWS SDK for C++

AWS SDK for C++ Version 1.11.718

Loading...
Searching...
No Matches
DescribeMlflowAppResult.h
1
6#pragma once
7#include <aws/core/utils/DateTime.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/sagemaker/SageMaker_EXPORTS.h>
11#include <aws/sagemaker/model/AccountDefaultStatus.h>
12#include <aws/sagemaker/model/MaintenanceStatus.h>
13#include <aws/sagemaker/model/MlflowAppStatus.h>
14#include <aws/sagemaker/model/ModelRegistrationMode.h>
15#include <aws/sagemaker/model/UserContext.h>
16
17#include <utility>
18
19namespace Aws {
20template <typename RESULT_TYPE>
21class AmazonWebServiceResult;
22
23namespace Utils {
24namespace Json {
25class JsonValue;
26} // namespace Json
27} // namespace Utils
28namespace SageMaker {
29namespace Model {
31 public:
32 AWS_SAGEMAKER_API DescribeMlflowAppResult() = default;
35
37
40 inline const Aws::String& GetArn() const { return m_arn; }
41 template <typename ArnT = Aws::String>
42 void SetArn(ArnT&& value) {
43 m_arnHasBeenSet = true;
44 m_arn = std::forward<ArnT>(value);
45 }
46 template <typename ArnT = Aws::String>
48 SetArn(std::forward<ArnT>(value));
49 return *this;
50 }
52
54
57 inline const Aws::String& GetName() const { return m_name; }
58 template <typename NameT = Aws::String>
59 void SetName(NameT&& value) {
60 m_nameHasBeenSet = true;
61 m_name = std::forward<NameT>(value);
62 }
63 template <typename NameT = Aws::String>
65 SetName(std::forward<NameT>(value));
66 return *this;
67 }
69
71
75 inline const Aws::String& GetArtifactStoreUri() const { return m_artifactStoreUri; }
76 template <typename ArtifactStoreUriT = Aws::String>
77 void SetArtifactStoreUri(ArtifactStoreUriT&& value) {
78 m_artifactStoreUriHasBeenSet = true;
79 m_artifactStoreUri = std::forward<ArtifactStoreUriT>(value);
80 }
81 template <typename ArtifactStoreUriT = Aws::String>
82 DescribeMlflowAppResult& WithArtifactStoreUri(ArtifactStoreUriT&& value) {
83 SetArtifactStoreUri(std::forward<ArtifactStoreUriT>(value));
84 return *this;
85 }
87
89
92 inline const Aws::String& GetMlflowVersion() const { return m_mlflowVersion; }
93 template <typename MlflowVersionT = Aws::String>
94 void SetMlflowVersion(MlflowVersionT&& value) {
95 m_mlflowVersionHasBeenSet = true;
96 m_mlflowVersion = std::forward<MlflowVersionT>(value);
97 }
98 template <typename MlflowVersionT = Aws::String>
99 DescribeMlflowAppResult& WithMlflowVersion(MlflowVersionT&& value) {
100 SetMlflowVersion(std::forward<MlflowVersionT>(value));
101 return *this;
102 }
104
106
110 inline const Aws::String& GetRoleArn() const { return m_roleArn; }
111 template <typename RoleArnT = Aws::String>
112 void SetRoleArn(RoleArnT&& value) {
113 m_roleArnHasBeenSet = true;
114 m_roleArn = std::forward<RoleArnT>(value);
115 }
116 template <typename RoleArnT = Aws::String>
118 SetRoleArn(std::forward<RoleArnT>(value));
119 return *this;
120 }
122
124
127 inline MlflowAppStatus GetStatus() const { return m_status; }
128 inline void SetStatus(MlflowAppStatus value) {
129 m_statusHasBeenSet = true;
130 m_status = value;
131 }
133 SetStatus(value);
134 return *this;
135 }
137
139
143 inline ModelRegistrationMode GetModelRegistrationMode() const { return m_modelRegistrationMode; }
145 m_modelRegistrationModeHasBeenSet = true;
146 m_modelRegistrationMode = value;
147 }
150 return *this;
151 }
153
155
158 inline AccountDefaultStatus GetAccountDefaultStatus() const { return m_accountDefaultStatus; }
160 m_accountDefaultStatusHasBeenSet = true;
161 m_accountDefaultStatus = value;
162 }
165 return *this;
166 }
168
170
173 inline const Aws::Vector<Aws::String>& GetDefaultDomainIdList() const { return m_defaultDomainIdList; }
174 template <typename DefaultDomainIdListT = Aws::Vector<Aws::String>>
175 void SetDefaultDomainIdList(DefaultDomainIdListT&& value) {
176 m_defaultDomainIdListHasBeenSet = true;
177 m_defaultDomainIdList = std::forward<DefaultDomainIdListT>(value);
178 }
179 template <typename DefaultDomainIdListT = Aws::Vector<Aws::String>>
180 DescribeMlflowAppResult& WithDefaultDomainIdList(DefaultDomainIdListT&& value) {
181 SetDefaultDomainIdList(std::forward<DefaultDomainIdListT>(value));
182 return *this;
183 }
184 template <typename DefaultDomainIdListT = Aws::String>
185 DescribeMlflowAppResult& AddDefaultDomainIdList(DefaultDomainIdListT&& value) {
186 m_defaultDomainIdListHasBeenSet = true;
187 m_defaultDomainIdList.emplace_back(std::forward<DefaultDomainIdListT>(value));
188 return *this;
189 }
191
193
196 inline const Aws::Utils::DateTime& GetCreationTime() const { return m_creationTime; }
197 template <typename CreationTimeT = Aws::Utils::DateTime>
198 void SetCreationTime(CreationTimeT&& value) {
199 m_creationTimeHasBeenSet = true;
200 m_creationTime = std::forward<CreationTimeT>(value);
201 }
202 template <typename CreationTimeT = Aws::Utils::DateTime>
204 SetCreationTime(std::forward<CreationTimeT>(value));
205 return *this;
206 }
208
210
211 inline const UserContext& GetCreatedBy() const { return m_createdBy; }
212 template <typename CreatedByT = UserContext>
213 void SetCreatedBy(CreatedByT&& value) {
214 m_createdByHasBeenSet = true;
215 m_createdBy = std::forward<CreatedByT>(value);
216 }
217 template <typename CreatedByT = UserContext>
219 SetCreatedBy(std::forward<CreatedByT>(value));
220 return *this;
221 }
223
225
228 inline const Aws::Utils::DateTime& GetLastModifiedTime() const { return m_lastModifiedTime; }
229 template <typename LastModifiedTimeT = Aws::Utils::DateTime>
230 void SetLastModifiedTime(LastModifiedTimeT&& value) {
231 m_lastModifiedTimeHasBeenSet = true;
232 m_lastModifiedTime = std::forward<LastModifiedTimeT>(value);
233 }
234 template <typename LastModifiedTimeT = Aws::Utils::DateTime>
235 DescribeMlflowAppResult& WithLastModifiedTime(LastModifiedTimeT&& value) {
236 SetLastModifiedTime(std::forward<LastModifiedTimeT>(value));
237 return *this;
238 }
240
242
243 inline const UserContext& GetLastModifiedBy() const { return m_lastModifiedBy; }
244 template <typename LastModifiedByT = UserContext>
245 void SetLastModifiedBy(LastModifiedByT&& value) {
246 m_lastModifiedByHasBeenSet = true;
247 m_lastModifiedBy = std::forward<LastModifiedByT>(value);
248 }
249 template <typename LastModifiedByT = UserContext>
250 DescribeMlflowAppResult& WithLastModifiedBy(LastModifiedByT&& value) {
251 SetLastModifiedBy(std::forward<LastModifiedByT>(value));
252 return *this;
253 }
255
257
260 inline const Aws::String& GetWeeklyMaintenanceWindowStart() const { return m_weeklyMaintenanceWindowStart; }
261 template <typename WeeklyMaintenanceWindowStartT = Aws::String>
262 void SetWeeklyMaintenanceWindowStart(WeeklyMaintenanceWindowStartT&& value) {
263 m_weeklyMaintenanceWindowStartHasBeenSet = true;
264 m_weeklyMaintenanceWindowStart = std::forward<WeeklyMaintenanceWindowStartT>(value);
265 }
266 template <typename WeeklyMaintenanceWindowStartT = Aws::String>
267 DescribeMlflowAppResult& WithWeeklyMaintenanceWindowStart(WeeklyMaintenanceWindowStartT&& value) {
268 SetWeeklyMaintenanceWindowStart(std::forward<WeeklyMaintenanceWindowStartT>(value));
269 return *this;
270 }
272
274
277 inline MaintenanceStatus GetMaintenanceStatus() const { return m_maintenanceStatus; }
279 m_maintenanceStatusHasBeenSet = true;
280 m_maintenanceStatus = value;
281 }
284 return *this;
285 }
287
289
290 inline const Aws::String& GetRequestId() const { return m_requestId; }
291 template <typename RequestIdT = Aws::String>
292 void SetRequestId(RequestIdT&& value) {
293 m_requestIdHasBeenSet = true;
294 m_requestId = std::forward<RequestIdT>(value);
295 }
296 template <typename RequestIdT = Aws::String>
298 SetRequestId(std::forward<RequestIdT>(value));
299 return *this;
300 }
302 private:
303 Aws::String m_arn;
304
305 Aws::String m_name;
306
307 Aws::String m_artifactStoreUri;
308
309 Aws::String m_mlflowVersion;
310
311 Aws::String m_roleArn;
312
314
316
318
319 Aws::Vector<Aws::String> m_defaultDomainIdList;
320
321 Aws::Utils::DateTime m_creationTime{};
322
323 UserContext m_createdBy;
324
325 Aws::Utils::DateTime m_lastModifiedTime{};
326
327 UserContext m_lastModifiedBy;
328
329 Aws::String m_weeklyMaintenanceWindowStart;
330
332
333 Aws::String m_requestId;
334 bool m_arnHasBeenSet = false;
335 bool m_nameHasBeenSet = false;
336 bool m_artifactStoreUriHasBeenSet = false;
337 bool m_mlflowVersionHasBeenSet = false;
338 bool m_roleArnHasBeenSet = false;
339 bool m_statusHasBeenSet = false;
340 bool m_modelRegistrationModeHasBeenSet = false;
341 bool m_accountDefaultStatusHasBeenSet = false;
342 bool m_defaultDomainIdListHasBeenSet = false;
343 bool m_creationTimeHasBeenSet = false;
344 bool m_createdByHasBeenSet = false;
345 bool m_lastModifiedTimeHasBeenSet = false;
346 bool m_lastModifiedByHasBeenSet = false;
347 bool m_weeklyMaintenanceWindowStartHasBeenSet = false;
348 bool m_maintenanceStatusHasBeenSet = false;
349 bool m_requestIdHasBeenSet = false;
350};
351
352} // namespace Model
353} // namespace SageMaker
354} // namespace Aws
DescribeMlflowAppResult & WithLastModifiedTime(LastModifiedTimeT &&value)
DescribeMlflowAppResult & WithModelRegistrationMode(ModelRegistrationMode value)
DescribeMlflowAppResult & AddDefaultDomainIdList(DefaultDomainIdListT &&value)
DescribeMlflowAppResult & WithDefaultDomainIdList(DefaultDomainIdListT &&value)
DescribeMlflowAppResult & WithMaintenanceStatus(MaintenanceStatus value)
DescribeMlflowAppResult & WithLastModifiedBy(LastModifiedByT &&value)
void SetAccountDefaultStatus(AccountDefaultStatus value)
DescribeMlflowAppResult & WithArtifactStoreUri(ArtifactStoreUriT &&value)
DescribeMlflowAppResult & WithName(NameT &&value)
DescribeMlflowAppResult & WithAccountDefaultStatus(AccountDefaultStatus value)
void SetWeeklyMaintenanceWindowStart(WeeklyMaintenanceWindowStartT &&value)
DescribeMlflowAppResult & WithRoleArn(RoleArnT &&value)
DescribeMlflowAppResult & WithStatus(MlflowAppStatus value)
void SetDefaultDomainIdList(DefaultDomainIdListT &&value)
void SetModelRegistrationMode(ModelRegistrationMode value)
DescribeMlflowAppResult & WithMlflowVersion(MlflowVersionT &&value)
const Aws::Vector< Aws::String > & GetDefaultDomainIdList() const
const Aws::Utils::DateTime & GetLastModifiedTime() const
DescribeMlflowAppResult & WithRequestId(RequestIdT &&value)
DescribeMlflowAppResult & WithWeeklyMaintenanceWindowStart(WeeklyMaintenanceWindowStartT &&value)
const Aws::Utils::DateTime & GetCreationTime() const
AWS_SAGEMAKER_API DescribeMlflowAppResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeMlflowAppResult & WithCreatedBy(CreatedByT &&value)
AWS_SAGEMAKER_API DescribeMlflowAppResult()=default
DescribeMlflowAppResult & WithCreationTime(CreationTimeT &&value)
DescribeMlflowAppResult & WithArn(ArnT &&value)
AWS_SAGEMAKER_API DescribeMlflowAppResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue