AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DeleteIntegrationResult.h
1
6#pragma once
7#include <aws/glue/Glue_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSMap.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/glue/model/IntegrationStatus.h>
12#include <aws/core/utils/DateTime.h>
13#include <aws/glue/model/Tag.h>
14#include <aws/glue/model/IntegrationError.h>
15#include <utility>
16
17namespace Aws
18{
19template<typename RESULT_TYPE>
20class AmazonWebServiceResult;
21
22namespace Utils
23{
24namespace Json
25{
26 class JsonValue;
27} // namespace Json
28} // namespace Utils
29namespace Glue
30{
31namespace Model
32{
34 {
35 public:
36 AWS_GLUE_API DeleteIntegrationResult() = default;
39
40
42
45 inline const Aws::String& GetSourceArn() const { return m_sourceArn; }
46 template<typename SourceArnT = Aws::String>
47 void SetSourceArn(SourceArnT&& value) { m_sourceArnHasBeenSet = true; m_sourceArn = std::forward<SourceArnT>(value); }
48 template<typename SourceArnT = Aws::String>
49 DeleteIntegrationResult& WithSourceArn(SourceArnT&& value) { SetSourceArn(std::forward<SourceArnT>(value)); return *this;}
51
53
56 inline const Aws::String& GetTargetArn() const { return m_targetArn; }
57 template<typename TargetArnT = Aws::String>
58 void SetTargetArn(TargetArnT&& value) { m_targetArnHasBeenSet = true; m_targetArn = std::forward<TargetArnT>(value); }
59 template<typename TargetArnT = Aws::String>
60 DeleteIntegrationResult& WithTargetArn(TargetArnT&& value) { SetTargetArn(std::forward<TargetArnT>(value)); return *this;}
62
64
67 inline const Aws::String& GetIntegrationName() const { return m_integrationName; }
68 template<typename IntegrationNameT = Aws::String>
69 void SetIntegrationName(IntegrationNameT&& value) { m_integrationNameHasBeenSet = true; m_integrationName = std::forward<IntegrationNameT>(value); }
70 template<typename IntegrationNameT = Aws::String>
71 DeleteIntegrationResult& WithIntegrationName(IntegrationNameT&& value) { SetIntegrationName(std::forward<IntegrationNameT>(value)); return *this;}
73
75
78 inline const Aws::String& GetDescription() const { return m_description; }
79 template<typename DescriptionT = Aws::String>
80 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
81 template<typename DescriptionT = Aws::String>
82 DeleteIntegrationResult& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
84
86
89 inline const Aws::String& GetIntegrationArn() const { return m_integrationArn; }
90 template<typename IntegrationArnT = Aws::String>
91 void SetIntegrationArn(IntegrationArnT&& value) { m_integrationArnHasBeenSet = true; m_integrationArn = std::forward<IntegrationArnT>(value); }
92 template<typename IntegrationArnT = Aws::String>
93 DeleteIntegrationResult& WithIntegrationArn(IntegrationArnT&& value) { SetIntegrationArn(std::forward<IntegrationArnT>(value)); return *this;}
95
97
100 inline const Aws::String& GetKmsKeyId() const { return m_kmsKeyId; }
101 template<typename KmsKeyIdT = Aws::String>
102 void SetKmsKeyId(KmsKeyIdT&& value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId = std::forward<KmsKeyIdT>(value); }
103 template<typename KmsKeyIdT = Aws::String>
104 DeleteIntegrationResult& WithKmsKeyId(KmsKeyIdT&& value) { SetKmsKeyId(std::forward<KmsKeyIdT>(value)); return *this;}
106
108
112 inline const Aws::Map<Aws::String, Aws::String>& GetAdditionalEncryptionContext() const { return m_additionalEncryptionContext; }
113 template<typename AdditionalEncryptionContextT = Aws::Map<Aws::String, Aws::String>>
114 void SetAdditionalEncryptionContext(AdditionalEncryptionContextT&& value) { m_additionalEncryptionContextHasBeenSet = true; m_additionalEncryptionContext = std::forward<AdditionalEncryptionContextT>(value); }
115 template<typename AdditionalEncryptionContextT = Aws::Map<Aws::String, Aws::String>>
116 DeleteIntegrationResult& WithAdditionalEncryptionContext(AdditionalEncryptionContextT&& value) { SetAdditionalEncryptionContext(std::forward<AdditionalEncryptionContextT>(value)); return *this;}
117 template<typename AdditionalEncryptionContextKeyT = Aws::String, typename AdditionalEncryptionContextValueT = Aws::String>
118 DeleteIntegrationResult& AddAdditionalEncryptionContext(AdditionalEncryptionContextKeyT&& key, AdditionalEncryptionContextValueT&& value) {
119 m_additionalEncryptionContextHasBeenSet = true; m_additionalEncryptionContext.emplace(std::forward<AdditionalEncryptionContextKeyT>(key), std::forward<AdditionalEncryptionContextValueT>(value)); return *this;
120 }
122
124
128 inline const Aws::Vector<Tag>& GetTags() const { return m_tags; }
129 template<typename TagsT = Aws::Vector<Tag>>
130 void SetTags(TagsT&& value) { m_tagsHasBeenSet = true; m_tags = std::forward<TagsT>(value); }
131 template<typename TagsT = Aws::Vector<Tag>>
132 DeleteIntegrationResult& WithTags(TagsT&& value) { SetTags(std::forward<TagsT>(value)); return *this;}
133 template<typename TagsT = Tag>
134 DeleteIntegrationResult& AddTags(TagsT&& value) { m_tagsHasBeenSet = true; m_tags.emplace_back(std::forward<TagsT>(value)); return *this; }
136
138
148 inline IntegrationStatus GetStatus() const { return m_status; }
149 inline void SetStatus(IntegrationStatus value) { m_statusHasBeenSet = true; m_status = value; }
150 inline DeleteIntegrationResult& WithStatus(IntegrationStatus value) { SetStatus(value); return *this;}
152
154
157 inline const Aws::Utils::DateTime& GetCreateTime() const { return m_createTime; }
158 template<typename CreateTimeT = Aws::Utils::DateTime>
159 void SetCreateTime(CreateTimeT&& value) { m_createTimeHasBeenSet = true; m_createTime = std::forward<CreateTimeT>(value); }
160 template<typename CreateTimeT = Aws::Utils::DateTime>
161 DeleteIntegrationResult& WithCreateTime(CreateTimeT&& value) { SetCreateTime(std::forward<CreateTimeT>(value)); return *this;}
163
165
168 inline const Aws::Vector<IntegrationError>& GetErrors() const { return m_errors; }
169 template<typename ErrorsT = Aws::Vector<IntegrationError>>
170 void SetErrors(ErrorsT&& value) { m_errorsHasBeenSet = true; m_errors = std::forward<ErrorsT>(value); }
171 template<typename ErrorsT = Aws::Vector<IntegrationError>>
172 DeleteIntegrationResult& WithErrors(ErrorsT&& value) { SetErrors(std::forward<ErrorsT>(value)); return *this;}
173 template<typename ErrorsT = IntegrationError>
174 DeleteIntegrationResult& AddErrors(ErrorsT&& value) { m_errorsHasBeenSet = true; m_errors.emplace_back(std::forward<ErrorsT>(value)); return *this; }
176
178
181 inline const Aws::String& GetDataFilter() const { return m_dataFilter; }
182 template<typename DataFilterT = Aws::String>
183 void SetDataFilter(DataFilterT&& value) { m_dataFilterHasBeenSet = true; m_dataFilter = std::forward<DataFilterT>(value); }
184 template<typename DataFilterT = Aws::String>
185 DeleteIntegrationResult& WithDataFilter(DataFilterT&& value) { SetDataFilter(std::forward<DataFilterT>(value)); return *this;}
187
189
190 inline const Aws::String& GetRequestId() const { return m_requestId; }
191 template<typename RequestIdT = Aws::String>
192 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
193 template<typename RequestIdT = Aws::String>
194 DeleteIntegrationResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
196 private:
197
198 Aws::String m_sourceArn;
199 bool m_sourceArnHasBeenSet = false;
200
201 Aws::String m_targetArn;
202 bool m_targetArnHasBeenSet = false;
203
204 Aws::String m_integrationName;
205 bool m_integrationNameHasBeenSet = false;
206
207 Aws::String m_description;
208 bool m_descriptionHasBeenSet = false;
209
210 Aws::String m_integrationArn;
211 bool m_integrationArnHasBeenSet = false;
212
213 Aws::String m_kmsKeyId;
214 bool m_kmsKeyIdHasBeenSet = false;
215
216 Aws::Map<Aws::String, Aws::String> m_additionalEncryptionContext;
217 bool m_additionalEncryptionContextHasBeenSet = false;
218
219 Aws::Vector<Tag> m_tags;
220 bool m_tagsHasBeenSet = false;
221
223 bool m_statusHasBeenSet = false;
224
225 Aws::Utils::DateTime m_createTime{};
226 bool m_createTimeHasBeenSet = false;
227
229 bool m_errorsHasBeenSet = false;
230
231 Aws::String m_dataFilter;
232 bool m_dataFilterHasBeenSet = false;
233
234 Aws::String m_requestId;
235 bool m_requestIdHasBeenSet = false;
236 };
237
238} // namespace Model
239} // namespace Glue
240} // namespace Aws
DeleteIntegrationResult & WithSourceArn(SourceArnT &&value)
DeleteIntegrationResult & WithDescription(DescriptionT &&value)
const Aws::Map< Aws::String, Aws::String > & GetAdditionalEncryptionContext() const
DeleteIntegrationResult & WithCreateTime(CreateTimeT &&value)
DeleteIntegrationResult & WithDataFilter(DataFilterT &&value)
DeleteIntegrationResult & WithAdditionalEncryptionContext(AdditionalEncryptionContextT &&value)
DeleteIntegrationResult & WithTargetArn(TargetArnT &&value)
DeleteIntegrationResult & AddAdditionalEncryptionContext(AdditionalEncryptionContextKeyT &&key, AdditionalEncryptionContextValueT &&value)
DeleteIntegrationResult & WithRequestId(RequestIdT &&value)
DeleteIntegrationResult & WithIntegrationName(IntegrationNameT &&value)
AWS_GLUE_API DeleteIntegrationResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DeleteIntegrationResult & WithErrors(ErrorsT &&value)
DeleteIntegrationResult & WithTags(TagsT &&value)
void SetAdditionalEncryptionContext(AdditionalEncryptionContextT &&value)
DeleteIntegrationResult & AddTags(TagsT &&value)
const Aws::Utils::DateTime & GetCreateTime() const
DeleteIntegrationResult & WithStatus(IntegrationStatus value)
const Aws::Vector< Tag > & GetTags() const
DeleteIntegrationResult & WithIntegrationArn(IntegrationArnT &&value)
DeleteIntegrationResult & WithKmsKeyId(KmsKeyIdT &&value)
DeleteIntegrationResult & AddErrors(ErrorsT &&value)
void SetIntegrationName(IntegrationNameT &&value)
AWS_GLUE_API DeleteIntegrationResult()=default
const Aws::Vector< IntegrationError > & GetErrors() const
AWS_GLUE_API DeleteIntegrationResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
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
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue