AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
DescribeFeatureMetadataResult.h
1
6#pragma once
7#include <aws/sagemaker/SageMaker_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/sagemaker/model/FeatureType.h>
10#include <aws/core/utils/DateTime.h>
11#include <aws/core/utils/memory/stl/AWSVector.h>
12#include <aws/sagemaker/model/FeatureParameter.h>
13#include <utility>
14
15namespace Aws
16{
17template<typename RESULT_TYPE>
18class AmazonWebServiceResult;
19
20namespace Utils
21{
22namespace Json
23{
24 class JsonValue;
25} // namespace Json
26} // namespace Utils
27namespace SageMaker
28{
29namespace Model
30{
32 {
33 public:
34 AWS_SAGEMAKER_API DescribeFeatureMetadataResult() = default;
37
38
40
44 inline const Aws::String& GetFeatureGroupArn() const { return m_featureGroupArn; }
45 template<typename FeatureGroupArnT = Aws::String>
46 void SetFeatureGroupArn(FeatureGroupArnT&& value) { m_featureGroupArnHasBeenSet = true; m_featureGroupArn = std::forward<FeatureGroupArnT>(value); }
47 template<typename FeatureGroupArnT = Aws::String>
48 DescribeFeatureMetadataResult& WithFeatureGroupArn(FeatureGroupArnT&& value) { SetFeatureGroupArn(std::forward<FeatureGroupArnT>(value)); return *this;}
50
52
55 inline const Aws::String& GetFeatureGroupName() const { return m_featureGroupName; }
56 template<typename FeatureGroupNameT = Aws::String>
57 void SetFeatureGroupName(FeatureGroupNameT&& value) { m_featureGroupNameHasBeenSet = true; m_featureGroupName = std::forward<FeatureGroupNameT>(value); }
58 template<typename FeatureGroupNameT = Aws::String>
59 DescribeFeatureMetadataResult& WithFeatureGroupName(FeatureGroupNameT&& value) { SetFeatureGroupName(std::forward<FeatureGroupNameT>(value)); return *this;}
61
63
66 inline const Aws::String& GetFeatureName() const { return m_featureName; }
67 template<typename FeatureNameT = Aws::String>
68 void SetFeatureName(FeatureNameT&& value) { m_featureNameHasBeenSet = true; m_featureName = std::forward<FeatureNameT>(value); }
69 template<typename FeatureNameT = Aws::String>
70 DescribeFeatureMetadataResult& WithFeatureName(FeatureNameT&& value) { SetFeatureName(std::forward<FeatureNameT>(value)); return *this;}
72
74
77 inline FeatureType GetFeatureType() const { return m_featureType; }
78 inline void SetFeatureType(FeatureType value) { m_featureTypeHasBeenSet = true; m_featureType = value; }
81
83
86 inline const Aws::Utils::DateTime& GetCreationTime() const { return m_creationTime; }
87 template<typename CreationTimeT = Aws::Utils::DateTime>
88 void SetCreationTime(CreationTimeT&& value) { m_creationTimeHasBeenSet = true; m_creationTime = std::forward<CreationTimeT>(value); }
89 template<typename CreationTimeT = Aws::Utils::DateTime>
90 DescribeFeatureMetadataResult& WithCreationTime(CreationTimeT&& value) { SetCreationTime(std::forward<CreationTimeT>(value)); return *this;}
92
94
99 inline const Aws::Utils::DateTime& GetLastModifiedTime() const { return m_lastModifiedTime; }
100 template<typename LastModifiedTimeT = Aws::Utils::DateTime>
101 void SetLastModifiedTime(LastModifiedTimeT&& value) { m_lastModifiedTimeHasBeenSet = true; m_lastModifiedTime = std::forward<LastModifiedTimeT>(value); }
102 template<typename LastModifiedTimeT = Aws::Utils::DateTime>
103 DescribeFeatureMetadataResult& WithLastModifiedTime(LastModifiedTimeT&& value) { SetLastModifiedTime(std::forward<LastModifiedTimeT>(value)); return *this;}
105
107
110 inline const Aws::String& GetDescription() const { return m_description; }
111 template<typename DescriptionT = Aws::String>
112 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
113 template<typename DescriptionT = Aws::String>
114 DescribeFeatureMetadataResult& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
116
118
121 inline const Aws::Vector<FeatureParameter>& GetParameters() const { return m_parameters; }
122 template<typename ParametersT = Aws::Vector<FeatureParameter>>
123 void SetParameters(ParametersT&& value) { m_parametersHasBeenSet = true; m_parameters = std::forward<ParametersT>(value); }
124 template<typename ParametersT = Aws::Vector<FeatureParameter>>
125 DescribeFeatureMetadataResult& WithParameters(ParametersT&& value) { SetParameters(std::forward<ParametersT>(value)); return *this;}
126 template<typename ParametersT = FeatureParameter>
127 DescribeFeatureMetadataResult& AddParameters(ParametersT&& value) { m_parametersHasBeenSet = true; m_parameters.emplace_back(std::forward<ParametersT>(value)); return *this; }
129
131
132 inline const Aws::String& GetRequestId() const { return m_requestId; }
133 template<typename RequestIdT = Aws::String>
134 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
135 template<typename RequestIdT = Aws::String>
136 DescribeFeatureMetadataResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
138 private:
139
140 Aws::String m_featureGroupArn;
141 bool m_featureGroupArnHasBeenSet = false;
142
143 Aws::String m_featureGroupName;
144 bool m_featureGroupNameHasBeenSet = false;
145
146 Aws::String m_featureName;
147 bool m_featureNameHasBeenSet = false;
148
149 FeatureType m_featureType{FeatureType::NOT_SET};
150 bool m_featureTypeHasBeenSet = false;
151
152 Aws::Utils::DateTime m_creationTime{};
153 bool m_creationTimeHasBeenSet = false;
154
155 Aws::Utils::DateTime m_lastModifiedTime{};
156 bool m_lastModifiedTimeHasBeenSet = false;
157
158 Aws::String m_description;
159 bool m_descriptionHasBeenSet = false;
160
162 bool m_parametersHasBeenSet = false;
163
164 Aws::String m_requestId;
165 bool m_requestIdHasBeenSet = false;
166 };
167
168} // namespace Model
169} // namespace SageMaker
170} // 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