AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
DescribeFeatureMetadataResult.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/FeatureParameter.h>
12#include <aws/sagemaker/model/FeatureType.h>
13
14#include <utility>
15
16namespace Aws {
17template <typename RESULT_TYPE>
18class AmazonWebServiceResult;
19
20namespace Utils {
21namespace Json {
22class JsonValue;
23} // namespace Json
24} // namespace Utils
25namespace SageMaker {
26namespace Model {
28 public:
29 AWS_SAGEMAKER_API DescribeFeatureMetadataResult() = default;
32
34
38 inline const Aws::String& GetFeatureGroupArn() const { return m_featureGroupArn; }
39 template <typename FeatureGroupArnT = Aws::String>
40 void SetFeatureGroupArn(FeatureGroupArnT&& value) {
41 m_featureGroupArnHasBeenSet = true;
42 m_featureGroupArn = std::forward<FeatureGroupArnT>(value);
43 }
44 template <typename FeatureGroupArnT = Aws::String>
46 SetFeatureGroupArn(std::forward<FeatureGroupArnT>(value));
47 return *this;
48 }
50
52
55 inline const Aws::String& GetFeatureGroupName() const { return m_featureGroupName; }
56 template <typename FeatureGroupNameT = Aws::String>
57 void SetFeatureGroupName(FeatureGroupNameT&& value) {
58 m_featureGroupNameHasBeenSet = true;
59 m_featureGroupName = std::forward<FeatureGroupNameT>(value);
60 }
61 template <typename FeatureGroupNameT = Aws::String>
63 SetFeatureGroupName(std::forward<FeatureGroupNameT>(value));
64 return *this;
65 }
67
69
72 inline const Aws::String& GetFeatureName() const { return m_featureName; }
73 template <typename FeatureNameT = Aws::String>
74 void SetFeatureName(FeatureNameT&& value) {
75 m_featureNameHasBeenSet = true;
76 m_featureName = std::forward<FeatureNameT>(value);
77 }
78 template <typename FeatureNameT = Aws::String>
80 SetFeatureName(std::forward<FeatureNameT>(value));
81 return *this;
82 }
84
86
89 inline FeatureType GetFeatureType() const { return m_featureType; }
90 inline void SetFeatureType(FeatureType value) {
91 m_featureTypeHasBeenSet = true;
92 m_featureType = value;
93 }
95 SetFeatureType(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
123 inline const Aws::Utils::DateTime& GetLastModifiedTime() const { return m_lastModifiedTime; }
124 template <typename LastModifiedTimeT = Aws::Utils::DateTime>
125 void SetLastModifiedTime(LastModifiedTimeT&& value) {
126 m_lastModifiedTimeHasBeenSet = true;
127 m_lastModifiedTime = std::forward<LastModifiedTimeT>(value);
128 }
129 template <typename LastModifiedTimeT = Aws::Utils::DateTime>
131 SetLastModifiedTime(std::forward<LastModifiedTimeT>(value));
132 return *this;
133 }
135
137
140 inline const Aws::String& GetDescription() const { return m_description; }
141 template <typename DescriptionT = Aws::String>
142 void SetDescription(DescriptionT&& value) {
143 m_descriptionHasBeenSet = true;
144 m_description = std::forward<DescriptionT>(value);
145 }
146 template <typename DescriptionT = Aws::String>
148 SetDescription(std::forward<DescriptionT>(value));
149 return *this;
150 }
152
154
157 inline const Aws::Vector<FeatureParameter>& GetParameters() const { return m_parameters; }
158 template <typename ParametersT = Aws::Vector<FeatureParameter>>
159 void SetParameters(ParametersT&& value) {
160 m_parametersHasBeenSet = true;
161 m_parameters = std::forward<ParametersT>(value);
162 }
163 template <typename ParametersT = Aws::Vector<FeatureParameter>>
165 SetParameters(std::forward<ParametersT>(value));
166 return *this;
167 }
168 template <typename ParametersT = FeatureParameter>
170 m_parametersHasBeenSet = true;
171 m_parameters.emplace_back(std::forward<ParametersT>(value));
172 return *this;
173 }
175
177
178 inline const Aws::String& GetRequestId() const { return m_requestId; }
179 template <typename RequestIdT = Aws::String>
180 void SetRequestId(RequestIdT&& value) {
181 m_requestIdHasBeenSet = true;
182 m_requestId = std::forward<RequestIdT>(value);
183 }
184 template <typename RequestIdT = Aws::String>
186 SetRequestId(std::forward<RequestIdT>(value));
187 return *this;
188 }
190 private:
191 Aws::String m_featureGroupArn;
192
193 Aws::String m_featureGroupName;
194
195 Aws::String m_featureName;
196
197 FeatureType m_featureType{FeatureType::NOT_SET};
198
199 Aws::Utils::DateTime m_creationTime{};
200
201 Aws::Utils::DateTime m_lastModifiedTime{};
202
203 Aws::String m_description;
204
206
207 Aws::String m_requestId;
208 bool m_featureGroupArnHasBeenSet = false;
209 bool m_featureGroupNameHasBeenSet = false;
210 bool m_featureNameHasBeenSet = false;
211 bool m_featureTypeHasBeenSet = false;
212 bool m_creationTimeHasBeenSet = false;
213 bool m_lastModifiedTimeHasBeenSet = false;
214 bool m_descriptionHasBeenSet = false;
215 bool m_parametersHasBeenSet = false;
216 bool m_requestIdHasBeenSet = false;
217};
218
219} // namespace Model
220} // namespace SageMaker
221} // 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