AWS SDK for C++

AWS SDK for C++ Version 1.11.788

Loading...
Searching...
No Matches
DescribeFeatureMetadataResult.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/core/utils/memory/stl/AWSVector.h>
11#include <aws/sagemaker/SageMaker_EXPORTS.h>
12#include <aws/sagemaker/model/FeatureParameter.h>
13#include <aws/sagemaker/model/FeatureType.h>
14
15#include <utility>
16
17namespace Aws {
18template <typename RESULT_TYPE>
19class AmazonWebServiceResult;
20
21namespace Utils {
22namespace Json {
23class JsonValue;
24} // namespace Json
25} // namespace Utils
26namespace SageMaker {
27namespace Model {
29 public:
30 AWS_SAGEMAKER_API DescribeFeatureMetadataResult() = default;
33
35
39 inline const Aws::String& GetFeatureGroupArn() const { return m_featureGroupArn; }
40 template <typename FeatureGroupArnT = Aws::String>
41 void SetFeatureGroupArn(FeatureGroupArnT&& value) {
42 m_featureGroupArnHasBeenSet = true;
43 m_featureGroupArn = std::forward<FeatureGroupArnT>(value);
44 }
45 template <typename FeatureGroupArnT = Aws::String>
47 SetFeatureGroupArn(std::forward<FeatureGroupArnT>(value));
48 return *this;
49 }
51
53
56 inline const Aws::String& GetFeatureGroupName() const { return m_featureGroupName; }
57 template <typename FeatureGroupNameT = Aws::String>
58 void SetFeatureGroupName(FeatureGroupNameT&& value) {
59 m_featureGroupNameHasBeenSet = true;
60 m_featureGroupName = std::forward<FeatureGroupNameT>(value);
61 }
62 template <typename FeatureGroupNameT = Aws::String>
64 SetFeatureGroupName(std::forward<FeatureGroupNameT>(value));
65 return *this;
66 }
68
70
73 inline const Aws::String& GetFeatureName() const { return m_featureName; }
74 template <typename FeatureNameT = Aws::String>
75 void SetFeatureName(FeatureNameT&& value) {
76 m_featureNameHasBeenSet = true;
77 m_featureName = std::forward<FeatureNameT>(value);
78 }
79 template <typename FeatureNameT = Aws::String>
81 SetFeatureName(std::forward<FeatureNameT>(value));
82 return *this;
83 }
85
87
90 inline FeatureType GetFeatureType() const { return m_featureType; }
91 inline void SetFeatureType(FeatureType value) {
92 m_featureTypeHasBeenSet = true;
93 m_featureType = value;
94 }
96 SetFeatureType(value);
97 return *this;
98 }
100
102
105 inline const Aws::Utils::DateTime& GetCreationTime() const { return m_creationTime; }
106 template <typename CreationTimeT = Aws::Utils::DateTime>
107 void SetCreationTime(CreationTimeT&& value) {
108 m_creationTimeHasBeenSet = true;
109 m_creationTime = std::forward<CreationTimeT>(value);
110 }
111 template <typename CreationTimeT = Aws::Utils::DateTime>
113 SetCreationTime(std::forward<CreationTimeT>(value));
114 return *this;
115 }
117
119
124 inline const Aws::Utils::DateTime& GetLastModifiedTime() const { return m_lastModifiedTime; }
125 template <typename LastModifiedTimeT = Aws::Utils::DateTime>
126 void SetLastModifiedTime(LastModifiedTimeT&& value) {
127 m_lastModifiedTimeHasBeenSet = true;
128 m_lastModifiedTime = std::forward<LastModifiedTimeT>(value);
129 }
130 template <typename LastModifiedTimeT = Aws::Utils::DateTime>
132 SetLastModifiedTime(std::forward<LastModifiedTimeT>(value));
133 return *this;
134 }
136
138
141 inline const Aws::String& GetDescription() const { return m_description; }
142 template <typename DescriptionT = Aws::String>
143 void SetDescription(DescriptionT&& value) {
144 m_descriptionHasBeenSet = true;
145 m_description = std::forward<DescriptionT>(value);
146 }
147 template <typename DescriptionT = Aws::String>
149 SetDescription(std::forward<DescriptionT>(value));
150 return *this;
151 }
153
155
158 inline const Aws::Vector<FeatureParameter>& GetParameters() const { return m_parameters; }
159 template <typename ParametersT = Aws::Vector<FeatureParameter>>
160 void SetParameters(ParametersT&& value) {
161 m_parametersHasBeenSet = true;
162 m_parameters = std::forward<ParametersT>(value);
163 }
164 template <typename ParametersT = Aws::Vector<FeatureParameter>>
166 SetParameters(std::forward<ParametersT>(value));
167 return *this;
168 }
169 template <typename ParametersT = FeatureParameter>
171 m_parametersHasBeenSet = true;
172 m_parameters.emplace_back(std::forward<ParametersT>(value));
173 return *this;
174 }
176
178
179 inline const Aws::String& GetRequestId() const { return m_requestId; }
180 template <typename RequestIdT = Aws::String>
181 void SetRequestId(RequestIdT&& value) {
182 m_requestIdHasBeenSet = true;
183 m_requestId = std::forward<RequestIdT>(value);
184 }
185 template <typename RequestIdT = Aws::String>
187 SetRequestId(std::forward<RequestIdT>(value));
188 return *this;
189 }
191 inline Aws::Http::HttpResponseCode GetHttpResponseCode() const { return m_HttpResponseCode; }
192
193 private:
194 Aws::String m_featureGroupArn;
195
196 Aws::String m_featureGroupName;
197
198 Aws::String m_featureName;
199
200 FeatureType m_featureType{FeatureType::NOT_SET};
201
202 Aws::Utils::DateTime m_creationTime{};
203
204 Aws::Utils::DateTime m_lastModifiedTime{};
205
206 Aws::String m_description;
207
209
210 Aws::String m_requestId;
211 Aws::Http::HttpResponseCode m_HttpResponseCode;
212 bool m_featureGroupArnHasBeenSet = false;
213 bool m_featureGroupNameHasBeenSet = false;
214 bool m_featureNameHasBeenSet = false;
215 bool m_featureTypeHasBeenSet = false;
216 bool m_creationTimeHasBeenSet = false;
217 bool m_lastModifiedTimeHasBeenSet = false;
218 bool m_descriptionHasBeenSet = false;
219 bool m_parametersHasBeenSet = false;
220 bool m_requestIdHasBeenSet = false;
221};
222
223} // namespace Model
224} // namespace SageMaker
225} // namespace Aws
DescribeFeatureMetadataResult & WithLastModifiedTime(LastModifiedTimeT &&value)
DescribeFeatureMetadataResult & WithFeatureType(FeatureType value)
DescribeFeatureMetadataResult & WithRequestId(RequestIdT &&value)
AWS_SAGEMAKER_API DescribeFeatureMetadataResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeFeatureMetadataResult & WithParameters(ParametersT &&value)
DescribeFeatureMetadataResult & WithFeatureGroupArn(FeatureGroupArnT &&value)
DescribeFeatureMetadataResult & AddParameters(ParametersT &&value)
DescribeFeatureMetadataResult & WithFeatureName(FeatureNameT &&value)
DescribeFeatureMetadataResult & WithFeatureGroupName(FeatureGroupNameT &&value)
DescribeFeatureMetadataResult & WithCreationTime(CreationTimeT &&value)
const Aws::Vector< FeatureParameter > & GetParameters() const
AWS_SAGEMAKER_API DescribeFeatureMetadataResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
AWS_SAGEMAKER_API DescribeFeatureMetadataResult()=default
DescribeFeatureMetadataResult & WithDescription(DescriptionT &&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