AWS SDK for C++

AWS SDK for C++ Version 1.11.788

Loading...
Searching...
No Matches
GetDataQualityRulesetResult.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/glue/Glue_EXPORTS.h>
11#include <aws/glue/model/DataQualityTargetTable.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 Glue {
25namespace Model {
32 public:
33 AWS_GLUE_API GetDataQualityRulesetResult() = default;
36
38
41 inline const Aws::String& GetName() const { return m_name; }
42 template <typename NameT = Aws::String>
43 void SetName(NameT&& value) {
44 m_nameHasBeenSet = true;
45 m_name = std::forward<NameT>(value);
46 }
47 template <typename NameT = Aws::String>
49 SetName(std::forward<NameT>(value));
50 return *this;
51 }
53
55
58 inline const Aws::String& GetDescription() const { return m_description; }
59 template <typename DescriptionT = Aws::String>
60 void SetDescription(DescriptionT&& value) {
61 m_descriptionHasBeenSet = true;
62 m_description = std::forward<DescriptionT>(value);
63 }
64 template <typename DescriptionT = Aws::String>
66 SetDescription(std::forward<DescriptionT>(value));
67 return *this;
68 }
70
72
76 inline const Aws::String& GetRuleset() const { return m_ruleset; }
77 template <typename RulesetT = Aws::String>
78 void SetRuleset(RulesetT&& value) {
79 m_rulesetHasBeenSet = true;
80 m_ruleset = std::forward<RulesetT>(value);
81 }
82 template <typename RulesetT = Aws::String>
84 SetRuleset(std::forward<RulesetT>(value));
85 return *this;
86 }
88
90
93 inline const DataQualityTargetTable& GetTargetTable() const { return m_targetTable; }
94 template <typename TargetTableT = DataQualityTargetTable>
95 void SetTargetTable(TargetTableT&& value) {
96 m_targetTableHasBeenSet = true;
97 m_targetTable = std::forward<TargetTableT>(value);
98 }
99 template <typename TargetTableT = DataQualityTargetTable>
101 SetTargetTable(std::forward<TargetTableT>(value));
102 return *this;
103 }
105
107
111 inline const Aws::Utils::DateTime& GetCreatedOn() const { return m_createdOn; }
112 template <typename CreatedOnT = Aws::Utils::DateTime>
113 void SetCreatedOn(CreatedOnT&& value) {
114 m_createdOnHasBeenSet = true;
115 m_createdOn = std::forward<CreatedOnT>(value);
116 }
117 template <typename CreatedOnT = Aws::Utils::DateTime>
119 SetCreatedOn(std::forward<CreatedOnT>(value));
120 return *this;
121 }
123
125
129 inline const Aws::Utils::DateTime& GetLastModifiedOn() const { return m_lastModifiedOn; }
130 template <typename LastModifiedOnT = Aws::Utils::DateTime>
131 void SetLastModifiedOn(LastModifiedOnT&& value) {
132 m_lastModifiedOnHasBeenSet = true;
133 m_lastModifiedOn = std::forward<LastModifiedOnT>(value);
134 }
135 template <typename LastModifiedOnT = Aws::Utils::DateTime>
137 SetLastModifiedOn(std::forward<LastModifiedOnT>(value));
138 return *this;
139 }
141
143
147 inline const Aws::String& GetRecommendationRunId() const { return m_recommendationRunId; }
148 template <typename RecommendationRunIdT = Aws::String>
149 void SetRecommendationRunId(RecommendationRunIdT&& value) {
150 m_recommendationRunIdHasBeenSet = true;
151 m_recommendationRunId = std::forward<RecommendationRunIdT>(value);
152 }
153 template <typename RecommendationRunIdT = Aws::String>
155 SetRecommendationRunId(std::forward<RecommendationRunIdT>(value));
156 return *this;
157 }
159
161
165 inline const Aws::String& GetDataQualitySecurityConfiguration() const { return m_dataQualitySecurityConfiguration; }
166 template <typename DataQualitySecurityConfigurationT = Aws::String>
167 void SetDataQualitySecurityConfiguration(DataQualitySecurityConfigurationT&& value) {
168 m_dataQualitySecurityConfigurationHasBeenSet = true;
169 m_dataQualitySecurityConfiguration = std::forward<DataQualitySecurityConfigurationT>(value);
170 }
171 template <typename DataQualitySecurityConfigurationT = Aws::String>
172 GetDataQualityRulesetResult& WithDataQualitySecurityConfiguration(DataQualitySecurityConfigurationT&& value) {
173 SetDataQualitySecurityConfiguration(std::forward<DataQualitySecurityConfigurationT>(value));
174 return *this;
175 }
177
179
180 inline const Aws::String& GetRequestId() const { return m_requestId; }
181 template <typename RequestIdT = Aws::String>
182 void SetRequestId(RequestIdT&& value) {
183 m_requestIdHasBeenSet = true;
184 m_requestId = std::forward<RequestIdT>(value);
185 }
186 template <typename RequestIdT = Aws::String>
188 SetRequestId(std::forward<RequestIdT>(value));
189 return *this;
190 }
192 inline Aws::Http::HttpResponseCode GetHttpResponseCode() const { return m_HttpResponseCode; }
193
194 private:
195 Aws::String m_name;
196
197 Aws::String m_description;
198
199 Aws::String m_ruleset;
200
201 DataQualityTargetTable m_targetTable;
202
203 Aws::Utils::DateTime m_createdOn{};
204
205 Aws::Utils::DateTime m_lastModifiedOn{};
206
207 Aws::String m_recommendationRunId;
208
209 Aws::String m_dataQualitySecurityConfiguration;
210
211 Aws::String m_requestId;
212 Aws::Http::HttpResponseCode m_HttpResponseCode;
213 bool m_nameHasBeenSet = false;
214 bool m_descriptionHasBeenSet = false;
215 bool m_rulesetHasBeenSet = false;
216 bool m_targetTableHasBeenSet = false;
217 bool m_createdOnHasBeenSet = false;
218 bool m_lastModifiedOnHasBeenSet = false;
219 bool m_recommendationRunIdHasBeenSet = false;
220 bool m_dataQualitySecurityConfigurationHasBeenSet = false;
221 bool m_requestIdHasBeenSet = false;
222};
223
224} // namespace Model
225} // namespace Glue
226} // namespace Aws
GetDataQualityRulesetResult & WithDataQualitySecurityConfiguration(DataQualitySecurityConfigurationT &&value)
const Aws::Utils::DateTime & GetLastModifiedOn() const
AWS_GLUE_API GetDataQualityRulesetResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GetDataQualityRulesetResult & WithRuleset(RulesetT &&value)
GetDataQualityRulesetResult & WithTargetTable(TargetTableT &&value)
Aws::Http::HttpResponseCode GetHttpResponseCode() const
void SetDataQualitySecurityConfiguration(DataQualitySecurityConfigurationT &&value)
void SetRecommendationRunId(RecommendationRunIdT &&value)
GetDataQualityRulesetResult & WithCreatedOn(CreatedOnT &&value)
const DataQualityTargetTable & GetTargetTable() const
AWS_GLUE_API GetDataQualityRulesetResult()=default
GetDataQualityRulesetResult & WithDescription(DescriptionT &&value)
GetDataQualityRulesetResult & WithName(NameT &&value)
AWS_GLUE_API GetDataQualityRulesetResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GetDataQualityRulesetResult & WithRequestId(RequestIdT &&value)
GetDataQualityRulesetResult & WithRecommendationRunId(RecommendationRunIdT &&value)
GetDataQualityRulesetResult & WithLastModifiedOn(LastModifiedOnT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue