AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListIntegrationItem.h
1
6#pragma once
7#include <aws/customer-profiles/CustomerProfiles_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/DateTime.h>
10#include <aws/core/utils/memory/stl/AWSMap.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Json
18{
19 class JsonValue;
20 class JsonView;
21} // namespace Json
22} // namespace Utils
23namespace CustomerProfiles
24{
25namespace Model
26{
27
34 {
35 public:
36 AWS_CUSTOMERPROFILES_API ListIntegrationItem();
37 AWS_CUSTOMERPROFILES_API ListIntegrationItem(Aws::Utils::Json::JsonView jsonValue);
38 AWS_CUSTOMERPROFILES_API ListIntegrationItem& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_CUSTOMERPROFILES_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetDomainName() const{ return m_domainName; }
47 inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; }
48 inline void SetDomainName(const Aws::String& value) { m_domainNameHasBeenSet = true; m_domainName = value; }
49 inline void SetDomainName(Aws::String&& value) { m_domainNameHasBeenSet = true; m_domainName = std::move(value); }
50 inline void SetDomainName(const char* value) { m_domainNameHasBeenSet = true; m_domainName.assign(value); }
51 inline ListIntegrationItem& WithDomainName(const Aws::String& value) { SetDomainName(value); return *this;}
52 inline ListIntegrationItem& WithDomainName(Aws::String&& value) { SetDomainName(std::move(value)); return *this;}
53 inline ListIntegrationItem& WithDomainName(const char* value) { SetDomainName(value); return *this;}
55
57
60 inline const Aws::String& GetUri() const{ return m_uri; }
61 inline bool UriHasBeenSet() const { return m_uriHasBeenSet; }
62 inline void SetUri(const Aws::String& value) { m_uriHasBeenSet = true; m_uri = value; }
63 inline void SetUri(Aws::String&& value) { m_uriHasBeenSet = true; m_uri = std::move(value); }
64 inline void SetUri(const char* value) { m_uriHasBeenSet = true; m_uri.assign(value); }
65 inline ListIntegrationItem& WithUri(const Aws::String& value) { SetUri(value); return *this;}
66 inline ListIntegrationItem& WithUri(Aws::String&& value) { SetUri(std::move(value)); return *this;}
67 inline ListIntegrationItem& WithUri(const char* value) { SetUri(value); return *this;}
69
71
74 inline const Aws::String& GetObjectTypeName() const{ return m_objectTypeName; }
75 inline bool ObjectTypeNameHasBeenSet() const { return m_objectTypeNameHasBeenSet; }
76 inline void SetObjectTypeName(const Aws::String& value) { m_objectTypeNameHasBeenSet = true; m_objectTypeName = value; }
77 inline void SetObjectTypeName(Aws::String&& value) { m_objectTypeNameHasBeenSet = true; m_objectTypeName = std::move(value); }
78 inline void SetObjectTypeName(const char* value) { m_objectTypeNameHasBeenSet = true; m_objectTypeName.assign(value); }
79 inline ListIntegrationItem& WithObjectTypeName(const Aws::String& value) { SetObjectTypeName(value); return *this;}
80 inline ListIntegrationItem& WithObjectTypeName(Aws::String&& value) { SetObjectTypeName(std::move(value)); return *this;}
81 inline ListIntegrationItem& WithObjectTypeName(const char* value) { SetObjectTypeName(value); return *this;}
83
85
88 inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; }
89 inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; }
90 inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAtHasBeenSet = true; m_createdAt = value; }
91 inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::move(value); }
92 inline ListIntegrationItem& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;}
93 inline ListIntegrationItem& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;}
95
97
100 inline const Aws::Utils::DateTime& GetLastUpdatedAt() const{ return m_lastUpdatedAt; }
101 inline bool LastUpdatedAtHasBeenSet() const { return m_lastUpdatedAtHasBeenSet; }
102 inline void SetLastUpdatedAt(const Aws::Utils::DateTime& value) { m_lastUpdatedAtHasBeenSet = true; m_lastUpdatedAt = value; }
103 inline void SetLastUpdatedAt(Aws::Utils::DateTime&& value) { m_lastUpdatedAtHasBeenSet = true; m_lastUpdatedAt = std::move(value); }
104 inline ListIntegrationItem& WithLastUpdatedAt(const Aws::Utils::DateTime& value) { SetLastUpdatedAt(value); return *this;}
105 inline ListIntegrationItem& WithLastUpdatedAt(Aws::Utils::DateTime&& value) { SetLastUpdatedAt(std::move(value)); return *this;}
107
109
112 inline const Aws::Map<Aws::String, Aws::String>& GetTags() const{ return m_tags; }
113 inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
114 inline void SetTags(const Aws::Map<Aws::String, Aws::String>& value) { m_tagsHasBeenSet = true; m_tags = value; }
115 inline void SetTags(Aws::Map<Aws::String, Aws::String>&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); }
116 inline ListIntegrationItem& WithTags(const Aws::Map<Aws::String, Aws::String>& value) { SetTags(value); return *this;}
117 inline ListIntegrationItem& WithTags(Aws::Map<Aws::String, Aws::String>&& value) { SetTags(std::move(value)); return *this;}
118 inline ListIntegrationItem& AddTags(const Aws::String& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; }
119 inline ListIntegrationItem& AddTags(Aws::String&& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; }
120 inline ListIntegrationItem& AddTags(const Aws::String& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; }
121 inline ListIntegrationItem& AddTags(Aws::String&& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), std::move(value)); return *this; }
122 inline ListIntegrationItem& AddTags(const char* key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; }
123 inline ListIntegrationItem& AddTags(Aws::String&& key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; }
124 inline ListIntegrationItem& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; }
126
128
137 inline const Aws::Map<Aws::String, Aws::String>& GetObjectTypeNames() const{ return m_objectTypeNames; }
138 inline bool ObjectTypeNamesHasBeenSet() const { return m_objectTypeNamesHasBeenSet; }
139 inline void SetObjectTypeNames(const Aws::Map<Aws::String, Aws::String>& value) { m_objectTypeNamesHasBeenSet = true; m_objectTypeNames = value; }
140 inline void SetObjectTypeNames(Aws::Map<Aws::String, Aws::String>&& value) { m_objectTypeNamesHasBeenSet = true; m_objectTypeNames = std::move(value); }
143 inline ListIntegrationItem& AddObjectTypeNames(const Aws::String& key, const Aws::String& value) { m_objectTypeNamesHasBeenSet = true; m_objectTypeNames.emplace(key, value); return *this; }
144 inline ListIntegrationItem& AddObjectTypeNames(Aws::String&& key, const Aws::String& value) { m_objectTypeNamesHasBeenSet = true; m_objectTypeNames.emplace(std::move(key), value); return *this; }
145 inline ListIntegrationItem& AddObjectTypeNames(const Aws::String& key, Aws::String&& value) { m_objectTypeNamesHasBeenSet = true; m_objectTypeNames.emplace(key, std::move(value)); return *this; }
146 inline ListIntegrationItem& AddObjectTypeNames(Aws::String&& key, Aws::String&& value) { m_objectTypeNamesHasBeenSet = true; m_objectTypeNames.emplace(std::move(key), std::move(value)); return *this; }
147 inline ListIntegrationItem& AddObjectTypeNames(const char* key, Aws::String&& value) { m_objectTypeNamesHasBeenSet = true; m_objectTypeNames.emplace(key, std::move(value)); return *this; }
148 inline ListIntegrationItem& AddObjectTypeNames(Aws::String&& key, const char* value) { m_objectTypeNamesHasBeenSet = true; m_objectTypeNames.emplace(std::move(key), value); return *this; }
149 inline ListIntegrationItem& AddObjectTypeNames(const char* key, const char* value) { m_objectTypeNamesHasBeenSet = true; m_objectTypeNames.emplace(key, value); return *this; }
151
153
156 inline const Aws::String& GetWorkflowId() const{ return m_workflowId; }
157 inline bool WorkflowIdHasBeenSet() const { return m_workflowIdHasBeenSet; }
158 inline void SetWorkflowId(const Aws::String& value) { m_workflowIdHasBeenSet = true; m_workflowId = value; }
159 inline void SetWorkflowId(Aws::String&& value) { m_workflowIdHasBeenSet = true; m_workflowId = std::move(value); }
160 inline void SetWorkflowId(const char* value) { m_workflowIdHasBeenSet = true; m_workflowId.assign(value); }
161 inline ListIntegrationItem& WithWorkflowId(const Aws::String& value) { SetWorkflowId(value); return *this;}
162 inline ListIntegrationItem& WithWorkflowId(Aws::String&& value) { SetWorkflowId(std::move(value)); return *this;}
163 inline ListIntegrationItem& WithWorkflowId(const char* value) { SetWorkflowId(value); return *this;}
165
167
172 inline bool GetIsUnstructured() const{ return m_isUnstructured; }
173 inline bool IsUnstructuredHasBeenSet() const { return m_isUnstructuredHasBeenSet; }
174 inline void SetIsUnstructured(bool value) { m_isUnstructuredHasBeenSet = true; m_isUnstructured = value; }
175 inline ListIntegrationItem& WithIsUnstructured(bool value) { SetIsUnstructured(value); return *this;}
177
179
183 inline const Aws::String& GetRoleArn() const{ return m_roleArn; }
184 inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; }
185 inline void SetRoleArn(const Aws::String& value) { m_roleArnHasBeenSet = true; m_roleArn = value; }
186 inline void SetRoleArn(Aws::String&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::move(value); }
187 inline void SetRoleArn(const char* value) { m_roleArnHasBeenSet = true; m_roleArn.assign(value); }
188 inline ListIntegrationItem& WithRoleArn(const Aws::String& value) { SetRoleArn(value); return *this;}
189 inline ListIntegrationItem& WithRoleArn(Aws::String&& value) { SetRoleArn(std::move(value)); return *this;}
190 inline ListIntegrationItem& WithRoleArn(const char* value) { SetRoleArn(value); return *this;}
192 private:
193
194 Aws::String m_domainName;
195 bool m_domainNameHasBeenSet = false;
196
197 Aws::String m_uri;
198 bool m_uriHasBeenSet = false;
199
200 Aws::String m_objectTypeName;
201 bool m_objectTypeNameHasBeenSet = false;
202
203 Aws::Utils::DateTime m_createdAt;
204 bool m_createdAtHasBeenSet = false;
205
206 Aws::Utils::DateTime m_lastUpdatedAt;
207 bool m_lastUpdatedAtHasBeenSet = false;
208
210 bool m_tagsHasBeenSet = false;
211
212 Aws::Map<Aws::String, Aws::String> m_objectTypeNames;
213 bool m_objectTypeNamesHasBeenSet = false;
214
215 Aws::String m_workflowId;
216 bool m_workflowIdHasBeenSet = false;
217
218 bool m_isUnstructured;
219 bool m_isUnstructuredHasBeenSet = false;
220
221 Aws::String m_roleArn;
222 bool m_roleArnHasBeenSet = false;
223 };
224
225} // namespace Model
226} // namespace CustomerProfiles
227} // namespace Aws
ListIntegrationItem & AddTags(const char *key, const char *value)
void SetCreatedAt(const Aws::Utils::DateTime &value)
ListIntegrationItem & AddObjectTypeNames(Aws::String &&key, const char *value)
ListIntegrationItem & WithUri(Aws::String &&value)
ListIntegrationItem & AddObjectTypeNames(Aws::String &&key, const Aws::String &value)
ListIntegrationItem & WithIsUnstructured(bool value)
ListIntegrationItem & WithLastUpdatedAt(Aws::Utils::DateTime &&value)
ListIntegrationItem & AddTags(const Aws::String &key, Aws::String &&value)
ListIntegrationItem & AddObjectTypeNames(const Aws::String &key, const Aws::String &value)
void SetObjectTypeNames(const Aws::Map< Aws::String, Aws::String > &value)
void SetObjectTypeNames(Aws::Map< Aws::String, Aws::String > &&value)
ListIntegrationItem & WithUri(const Aws::String &value)
ListIntegrationItem & AddTags(Aws::String &&key, Aws::String &&value)
const Aws::Map< Aws::String, Aws::String > & GetTags() const
ListIntegrationItem & WithDomainName(const Aws::String &value)
const Aws::Utils::DateTime & GetCreatedAt() const
const Aws::Utils::DateTime & GetLastUpdatedAt() const
ListIntegrationItem & WithRoleArn(Aws::String &&value)
AWS_CUSTOMERPROFILES_API ListIntegrationItem & operator=(Aws::Utils::Json::JsonView jsonValue)
ListIntegrationItem & WithRoleArn(const char *value)
ListIntegrationItem & WithWorkflowId(Aws::String &&value)
ListIntegrationItem & WithCreatedAt(const Aws::Utils::DateTime &value)
ListIntegrationItem & AddTags(const char *key, Aws::String &&value)
ListIntegrationItem & WithWorkflowId(const char *value)
ListIntegrationItem & AddObjectTypeNames(const char *key, Aws::String &&value)
ListIntegrationItem & WithCreatedAt(Aws::Utils::DateTime &&value)
ListIntegrationItem & AddObjectTypeNames(const Aws::String &key, Aws::String &&value)
ListIntegrationItem & WithTags(const Aws::Map< Aws::String, Aws::String > &value)
void SetLastUpdatedAt(const Aws::Utils::DateTime &value)
void SetCreatedAt(Aws::Utils::DateTime &&value)
ListIntegrationItem & WithLastUpdatedAt(const Aws::Utils::DateTime &value)
ListIntegrationItem & AddTags(const Aws::String &key, const Aws::String &value)
void SetTags(const Aws::Map< Aws::String, Aws::String > &value)
ListIntegrationItem & WithDomainName(Aws::String &&value)
ListIntegrationItem & WithUri(const char *value)
ListIntegrationItem & AddObjectTypeNames(Aws::String &&key, Aws::String &&value)
AWS_CUSTOMERPROFILES_API Aws::Utils::Json::JsonValue Jsonize() const
ListIntegrationItem & WithObjectTypeNames(const Aws::Map< Aws::String, Aws::String > &value)
ListIntegrationItem & AddObjectTypeNames(const char *key, const char *value)
ListIntegrationItem & WithDomainName(const char *value)
ListIntegrationItem & WithObjectTypeName(const char *value)
ListIntegrationItem & AddTags(Aws::String &&key, const char *value)
AWS_CUSTOMERPROFILES_API ListIntegrationItem(Aws::Utils::Json::JsonView jsonValue)
ListIntegrationItem & WithObjectTypeName(const Aws::String &value)
ListIntegrationItem & WithTags(Aws::Map< Aws::String, Aws::String > &&value)
ListIntegrationItem & AddTags(Aws::String &&key, const Aws::String &value)
ListIntegrationItem & WithObjectTypeNames(Aws::Map< Aws::String, Aws::String > &&value)
const Aws::Map< Aws::String, Aws::String > & GetObjectTypeNames() const
ListIntegrationItem & WithRoleArn(const Aws::String &value)
ListIntegrationItem & WithWorkflowId(const Aws::String &value)
ListIntegrationItem & WithObjectTypeName(Aws::String &&value)
void SetLastUpdatedAt(Aws::Utils::DateTime &&value)
void SetTags(Aws::Map< Aws::String, Aws::String > &&value)
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
Aws::Utils::Json::JsonValue JsonValue