AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CreateDataQualityRulesetRequest.h
1
6#pragma once
7#include <aws/glue/Glue_EXPORTS.h>
8#include <aws/glue/GlueRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSMap.h>
11#include <aws/glue/model/DataQualityTargetTable.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Glue
17{
18namespace Model
19{
20
24 {
25 public:
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "CreateDataQualityRuleset"; }
33
34 AWS_GLUE_API Aws::String SerializePayload() const override;
35
37
38
40
43 inline const Aws::String& GetName() const{ return m_name; }
44 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
45 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
46 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
47 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
48 inline CreateDataQualityRulesetRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
49 inline CreateDataQualityRulesetRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
50 inline CreateDataQualityRulesetRequest& WithName(const char* value) { SetName(value); return *this;}
52
54
57 inline const Aws::String& GetDescription() const{ return m_description; }
58 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
59 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
60 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
61 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
62 inline CreateDataQualityRulesetRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
63 inline CreateDataQualityRulesetRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
64 inline CreateDataQualityRulesetRequest& WithDescription(const char* value) { SetDescription(value); return *this;}
66
68
72 inline const Aws::String& GetRuleset() const{ return m_ruleset; }
73 inline bool RulesetHasBeenSet() const { return m_rulesetHasBeenSet; }
74 inline void SetRuleset(const Aws::String& value) { m_rulesetHasBeenSet = true; m_ruleset = value; }
75 inline void SetRuleset(Aws::String&& value) { m_rulesetHasBeenSet = true; m_ruleset = std::move(value); }
76 inline void SetRuleset(const char* value) { m_rulesetHasBeenSet = true; m_ruleset.assign(value); }
77 inline CreateDataQualityRulesetRequest& WithRuleset(const Aws::String& value) { SetRuleset(value); return *this;}
78 inline CreateDataQualityRulesetRequest& WithRuleset(Aws::String&& value) { SetRuleset(std::move(value)); return *this;}
79 inline CreateDataQualityRulesetRequest& WithRuleset(const char* value) { SetRuleset(value); return *this;}
81
83
86 inline const Aws::Map<Aws::String, Aws::String>& GetTags() const{ return m_tags; }
87 inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
88 inline void SetTags(const Aws::Map<Aws::String, Aws::String>& value) { m_tagsHasBeenSet = true; m_tags = value; }
89 inline void SetTags(Aws::Map<Aws::String, Aws::String>&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); }
91 inline CreateDataQualityRulesetRequest& WithTags(Aws::Map<Aws::String, Aws::String>&& value) { SetTags(std::move(value)); return *this;}
92 inline CreateDataQualityRulesetRequest& AddTags(const Aws::String& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; }
93 inline CreateDataQualityRulesetRequest& AddTags(Aws::String&& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; }
94 inline CreateDataQualityRulesetRequest& AddTags(const Aws::String& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; }
95 inline CreateDataQualityRulesetRequest& AddTags(Aws::String&& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), std::move(value)); return *this; }
96 inline CreateDataQualityRulesetRequest& AddTags(const char* key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; }
97 inline CreateDataQualityRulesetRequest& AddTags(Aws::String&& key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; }
98 inline CreateDataQualityRulesetRequest& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; }
100
102
105 inline const DataQualityTargetTable& GetTargetTable() const{ return m_targetTable; }
106 inline bool TargetTableHasBeenSet() const { return m_targetTableHasBeenSet; }
107 inline void SetTargetTable(const DataQualityTargetTable& value) { m_targetTableHasBeenSet = true; m_targetTable = value; }
108 inline void SetTargetTable(DataQualityTargetTable&& value) { m_targetTableHasBeenSet = true; m_targetTable = std::move(value); }
112
114
118 inline const Aws::String& GetDataQualitySecurityConfiguration() const{ return m_dataQualitySecurityConfiguration; }
119 inline bool DataQualitySecurityConfigurationHasBeenSet() const { return m_dataQualitySecurityConfigurationHasBeenSet; }
120 inline void SetDataQualitySecurityConfiguration(const Aws::String& value) { m_dataQualitySecurityConfigurationHasBeenSet = true; m_dataQualitySecurityConfiguration = value; }
121 inline void SetDataQualitySecurityConfiguration(Aws::String&& value) { m_dataQualitySecurityConfigurationHasBeenSet = true; m_dataQualitySecurityConfiguration = std::move(value); }
122 inline void SetDataQualitySecurityConfiguration(const char* value) { m_dataQualitySecurityConfigurationHasBeenSet = true; m_dataQualitySecurityConfiguration.assign(value); }
127
129
133 inline const Aws::String& GetClientToken() const{ return m_clientToken; }
134 inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
135 inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; }
136 inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); }
137 inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); }
138 inline CreateDataQualityRulesetRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;}
139 inline CreateDataQualityRulesetRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;}
140 inline CreateDataQualityRulesetRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;}
142 private:
143
144 Aws::String m_name;
145 bool m_nameHasBeenSet = false;
146
147 Aws::String m_description;
148 bool m_descriptionHasBeenSet = false;
149
150 Aws::String m_ruleset;
151 bool m_rulesetHasBeenSet = false;
152
154 bool m_tagsHasBeenSet = false;
155
156 DataQualityTargetTable m_targetTable;
157 bool m_targetTableHasBeenSet = false;
158
159 Aws::String m_dataQualitySecurityConfiguration;
160 bool m_dataQualitySecurityConfigurationHasBeenSet = false;
161
162 Aws::String m_clientToken;
163 bool m_clientTokenHasBeenSet = false;
164 };
165
166} // namespace Model
167} // namespace Glue
168} // namespace Aws
void SetTags(Aws::Map< Aws::String, Aws::String > &&value)
CreateDataQualityRulesetRequest & WithName(const char *value)
CreateDataQualityRulesetRequest & WithRuleset(Aws::String &&value)
CreateDataQualityRulesetRequest & WithClientToken(Aws::String &&value)
CreateDataQualityRulesetRequest & WithDescription(Aws::String &&value)
CreateDataQualityRulesetRequest & WithRuleset(const char *value)
CreateDataQualityRulesetRequest & AddTags(Aws::String &&key, Aws::String &&value)
CreateDataQualityRulesetRequest & AddTags(const Aws::String &key, Aws::String &&value)
CreateDataQualityRulesetRequest & AddTags(const char *key, Aws::String &&value)
CreateDataQualityRulesetRequest & WithClientToken(const char *value)
CreateDataQualityRulesetRequest & AddTags(Aws::String &&key, const Aws::String &value)
CreateDataQualityRulesetRequest & WithTargetTable(const DataQualityTargetTable &value)
CreateDataQualityRulesetRequest & WithClientToken(const Aws::String &value)
CreateDataQualityRulesetRequest & WithDataQualitySecurityConfiguration(const Aws::String &value)
CreateDataQualityRulesetRequest & WithRuleset(const Aws::String &value)
CreateDataQualityRulesetRequest & WithDataQualitySecurityConfiguration(Aws::String &&value)
AWS_GLUE_API Aws::String SerializePayload() const override
const Aws::Map< Aws::String, Aws::String > & GetTags() const
void SetTags(const Aws::Map< Aws::String, Aws::String > &value)
CreateDataQualityRulesetRequest & AddTags(Aws::String &&key, const char *value)
CreateDataQualityRulesetRequest & WithDataQualitySecurityConfiguration(const char *value)
CreateDataQualityRulesetRequest & WithDescription(const char *value)
CreateDataQualityRulesetRequest & WithDescription(const Aws::String &value)
CreateDataQualityRulesetRequest & WithTargetTable(DataQualityTargetTable &&value)
CreateDataQualityRulesetRequest & WithName(const Aws::String &value)
AWS_GLUE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
CreateDataQualityRulesetRequest & WithTags(Aws::Map< Aws::String, Aws::String > &&value)
CreateDataQualityRulesetRequest & AddTags(const char *key, const char *value)
CreateDataQualityRulesetRequest & WithTags(const Aws::Map< Aws::String, Aws::String > &value)
CreateDataQualityRulesetRequest & AddTags(const Aws::String &key, const Aws::String &value)
CreateDataQualityRulesetRequest & WithName(Aws::String &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::map< K, V, std::less< K >, Aws::Allocator< std::pair< const K, V > > > Map
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String