AWS SDK for C++

AWS SDK for C++ Version 1.11.759

Loading...
Searching...
No Matches
DescribeLineageGroupResult.h
1
6#pragma once
7#include <aws/core/http/HttpResponse.h>
8#include <aws/core/utils/DateTime.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/sagemaker/SageMaker_EXPORTS.h>
11#include <aws/sagemaker/model/UserContext.h>
12
13#include <utility>
14
15namespace Aws {
16template <typename RESULT_TYPE>
17class AmazonWebServiceResult;
18
19namespace Utils {
20namespace Json {
21class JsonValue;
22} // namespace Json
23} // namespace Utils
24namespace SageMaker {
25namespace Model {
27 public:
28 AWS_SAGEMAKER_API DescribeLineageGroupResult() = default;
31
33
36 inline const Aws::String& GetLineageGroupName() const { return m_lineageGroupName; }
37 template <typename LineageGroupNameT = Aws::String>
38 void SetLineageGroupName(LineageGroupNameT&& value) {
39 m_lineageGroupNameHasBeenSet = true;
40 m_lineageGroupName = std::forward<LineageGroupNameT>(value);
41 }
42 template <typename LineageGroupNameT = Aws::String>
44 SetLineageGroupName(std::forward<LineageGroupNameT>(value));
45 return *this;
46 }
48
50
53 inline const Aws::String& GetLineageGroupArn() const { return m_lineageGroupArn; }
54 template <typename LineageGroupArnT = Aws::String>
55 void SetLineageGroupArn(LineageGroupArnT&& value) {
56 m_lineageGroupArnHasBeenSet = true;
57 m_lineageGroupArn = std::forward<LineageGroupArnT>(value);
58 }
59 template <typename LineageGroupArnT = Aws::String>
61 SetLineageGroupArn(std::forward<LineageGroupArnT>(value));
62 return *this;
63 }
65
67
70 inline const Aws::String& GetDisplayName() const { return m_displayName; }
71 template <typename DisplayNameT = Aws::String>
72 void SetDisplayName(DisplayNameT&& value) {
73 m_displayNameHasBeenSet = true;
74 m_displayName = std::forward<DisplayNameT>(value);
75 }
76 template <typename DisplayNameT = Aws::String>
78 SetDisplayName(std::forward<DisplayNameT>(value));
79 return *this;
80 }
82
84
87 inline const Aws::String& GetDescription() const { return m_description; }
88 template <typename DescriptionT = Aws::String>
89 void SetDescription(DescriptionT&& value) {
90 m_descriptionHasBeenSet = true;
91 m_description = std::forward<DescriptionT>(value);
92 }
93 template <typename DescriptionT = Aws::String>
95 SetDescription(std::forward<DescriptionT>(value));
96 return *this;
97 }
99
101
104 inline const Aws::Utils::DateTime& GetCreationTime() const { return m_creationTime; }
105 template <typename CreationTimeT = Aws::Utils::DateTime>
106 void SetCreationTime(CreationTimeT&& value) {
107 m_creationTimeHasBeenSet = true;
108 m_creationTime = std::forward<CreationTimeT>(value);
109 }
110 template <typename CreationTimeT = Aws::Utils::DateTime>
112 SetCreationTime(std::forward<CreationTimeT>(value));
113 return *this;
114 }
116
118
119 inline const UserContext& GetCreatedBy() const { return m_createdBy; }
120 template <typename CreatedByT = UserContext>
121 void SetCreatedBy(CreatedByT&& value) {
122 m_createdByHasBeenSet = true;
123 m_createdBy = std::forward<CreatedByT>(value);
124 }
125 template <typename CreatedByT = UserContext>
127 SetCreatedBy(std::forward<CreatedByT>(value));
128 return *this;
129 }
131
133
136 inline const Aws::Utils::DateTime& GetLastModifiedTime() const { return m_lastModifiedTime; }
137 template <typename LastModifiedTimeT = Aws::Utils::DateTime>
138 void SetLastModifiedTime(LastModifiedTimeT&& value) {
139 m_lastModifiedTimeHasBeenSet = true;
140 m_lastModifiedTime = std::forward<LastModifiedTimeT>(value);
141 }
142 template <typename LastModifiedTimeT = Aws::Utils::DateTime>
144 SetLastModifiedTime(std::forward<LastModifiedTimeT>(value));
145 return *this;
146 }
148
150
151 inline const UserContext& GetLastModifiedBy() const { return m_lastModifiedBy; }
152 template <typename LastModifiedByT = UserContext>
153 void SetLastModifiedBy(LastModifiedByT&& value) {
154 m_lastModifiedByHasBeenSet = true;
155 m_lastModifiedBy = std::forward<LastModifiedByT>(value);
156 }
157 template <typename LastModifiedByT = UserContext>
159 SetLastModifiedBy(std::forward<LastModifiedByT>(value));
160 return *this;
161 }
163
165
166 inline const Aws::String& GetRequestId() const { return m_requestId; }
167 template <typename RequestIdT = Aws::String>
168 void SetRequestId(RequestIdT&& value) {
169 m_requestIdHasBeenSet = true;
170 m_requestId = std::forward<RequestIdT>(value);
171 }
172 template <typename RequestIdT = Aws::String>
174 SetRequestId(std::forward<RequestIdT>(value));
175 return *this;
176 }
178 inline Aws::Http::HttpResponseCode GetHttpResponseCode() const { return m_HttpResponseCode; }
179
180 private:
181 Aws::String m_lineageGroupName;
182
183 Aws::String m_lineageGroupArn;
184
185 Aws::String m_displayName;
186
187 Aws::String m_description;
188
189 Aws::Utils::DateTime m_creationTime{};
190
191 UserContext m_createdBy;
192
193 Aws::Utils::DateTime m_lastModifiedTime{};
194
195 UserContext m_lastModifiedBy;
196
197 Aws::String m_requestId;
198 Aws::Http::HttpResponseCode m_HttpResponseCode;
199 bool m_lineageGroupNameHasBeenSet = false;
200 bool m_lineageGroupArnHasBeenSet = false;
201 bool m_displayNameHasBeenSet = false;
202 bool m_descriptionHasBeenSet = false;
203 bool m_creationTimeHasBeenSet = false;
204 bool m_createdByHasBeenSet = false;
205 bool m_lastModifiedTimeHasBeenSet = false;
206 bool m_lastModifiedByHasBeenSet = false;
207 bool m_requestIdHasBeenSet = false;
208};
209
210} // namespace Model
211} // namespace SageMaker
212} // namespace Aws
DescribeLineageGroupResult & WithDescription(DescriptionT &&value)
AWS_SAGEMAKER_API DescribeLineageGroupResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeLineageGroupResult & WithCreatedBy(CreatedByT &&value)
DescribeLineageGroupResult & WithRequestId(RequestIdT &&value)
DescribeLineageGroupResult & WithLineageGroupArn(LineageGroupArnT &&value)
DescribeLineageGroupResult & WithLineageGroupName(LineageGroupNameT &&value)
DescribeLineageGroupResult & WithLastModifiedBy(LastModifiedByT &&value)
DescribeLineageGroupResult & WithLastModifiedTime(LastModifiedTimeT &&value)
AWS_SAGEMAKER_API DescribeLineageGroupResult()=default
AWS_SAGEMAKER_API DescribeLineageGroupResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeLineageGroupResult & WithDisplayName(DisplayNameT &&value)
DescribeLineageGroupResult & WithCreationTime(CreationTimeT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue