AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
IdNamespaceSummary.h
1
6#pragma once
7#include <aws/entityresolution/EntityResolution_EXPORTS.h>
8#include <aws/core/utils/DateTime.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/entityresolution/model/IdNamespaceType.h>
12#include <aws/entityresolution/model/IdNamespaceIdMappingWorkflowMetadata.h>
13#include <utility>
14
15namespace Aws
16{
17namespace Utils
18{
19namespace Json
20{
21 class JsonValue;
22 class JsonView;
23} // namespace Json
24} // namespace Utils
25namespace EntityResolution
26{
27namespace Model
28{
29
36 {
37 public:
38 AWS_ENTITYRESOLUTION_API IdNamespaceSummary();
39 AWS_ENTITYRESOLUTION_API IdNamespaceSummary(Aws::Utils::Json::JsonView jsonValue);
40 AWS_ENTITYRESOLUTION_API IdNamespaceSummary& operator=(Aws::Utils::Json::JsonView jsonValue);
41 AWS_ENTITYRESOLUTION_API Aws::Utils::Json::JsonValue Jsonize() const;
42
43
45
48 inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; }
49 inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; }
50 inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAtHasBeenSet = true; m_createdAt = value; }
51 inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::move(value); }
52 inline IdNamespaceSummary& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;}
53 inline IdNamespaceSummary& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;}
55
57
60 inline const Aws::String& GetDescription() const{ return m_description; }
61 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
62 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
63 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
64 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
65 inline IdNamespaceSummary& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
66 inline IdNamespaceSummary& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
67 inline IdNamespaceSummary& WithDescription(const char* value) { SetDescription(value); return *this;}
69
71
75 inline const Aws::Vector<IdNamespaceIdMappingWorkflowMetadata>& GetIdMappingWorkflowProperties() const{ return m_idMappingWorkflowProperties; }
76 inline bool IdMappingWorkflowPropertiesHasBeenSet() const { return m_idMappingWorkflowPropertiesHasBeenSet; }
77 inline void SetIdMappingWorkflowProperties(const Aws::Vector<IdNamespaceIdMappingWorkflowMetadata>& value) { m_idMappingWorkflowPropertiesHasBeenSet = true; m_idMappingWorkflowProperties = value; }
78 inline void SetIdMappingWorkflowProperties(Aws::Vector<IdNamespaceIdMappingWorkflowMetadata>&& value) { m_idMappingWorkflowPropertiesHasBeenSet = true; m_idMappingWorkflowProperties = std::move(value); }
81 inline IdNamespaceSummary& AddIdMappingWorkflowProperties(const IdNamespaceIdMappingWorkflowMetadata& value) { m_idMappingWorkflowPropertiesHasBeenSet = true; m_idMappingWorkflowProperties.push_back(value); return *this; }
82 inline IdNamespaceSummary& AddIdMappingWorkflowProperties(IdNamespaceIdMappingWorkflowMetadata&& value) { m_idMappingWorkflowPropertiesHasBeenSet = true; m_idMappingWorkflowProperties.push_back(std::move(value)); return *this; }
84
86
89 inline const Aws::String& GetIdNamespaceArn() const{ return m_idNamespaceArn; }
90 inline bool IdNamespaceArnHasBeenSet() const { return m_idNamespaceArnHasBeenSet; }
91 inline void SetIdNamespaceArn(const Aws::String& value) { m_idNamespaceArnHasBeenSet = true; m_idNamespaceArn = value; }
92 inline void SetIdNamespaceArn(Aws::String&& value) { m_idNamespaceArnHasBeenSet = true; m_idNamespaceArn = std::move(value); }
93 inline void SetIdNamespaceArn(const char* value) { m_idNamespaceArnHasBeenSet = true; m_idNamespaceArn.assign(value); }
94 inline IdNamespaceSummary& WithIdNamespaceArn(const Aws::String& value) { SetIdNamespaceArn(value); return *this;}
95 inline IdNamespaceSummary& WithIdNamespaceArn(Aws::String&& value) { SetIdNamespaceArn(std::move(value)); return *this;}
96 inline IdNamespaceSummary& WithIdNamespaceArn(const char* value) { SetIdNamespaceArn(value); return *this;}
98
100
103 inline const Aws::String& GetIdNamespaceName() const{ return m_idNamespaceName; }
104 inline bool IdNamespaceNameHasBeenSet() const { return m_idNamespaceNameHasBeenSet; }
105 inline void SetIdNamespaceName(const Aws::String& value) { m_idNamespaceNameHasBeenSet = true; m_idNamespaceName = value; }
106 inline void SetIdNamespaceName(Aws::String&& value) { m_idNamespaceNameHasBeenSet = true; m_idNamespaceName = std::move(value); }
107 inline void SetIdNamespaceName(const char* value) { m_idNamespaceNameHasBeenSet = true; m_idNamespaceName.assign(value); }
108 inline IdNamespaceSummary& WithIdNamespaceName(const Aws::String& value) { SetIdNamespaceName(value); return *this;}
109 inline IdNamespaceSummary& WithIdNamespaceName(Aws::String&& value) { SetIdNamespaceName(std::move(value)); return *this;}
110 inline IdNamespaceSummary& WithIdNamespaceName(const char* value) { SetIdNamespaceName(value); return *this;}
112
114
121 inline const IdNamespaceType& GetType() const{ return m_type; }
122 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
123 inline void SetType(const IdNamespaceType& value) { m_typeHasBeenSet = true; m_type = value; }
124 inline void SetType(IdNamespaceType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); }
125 inline IdNamespaceSummary& WithType(const IdNamespaceType& value) { SetType(value); return *this;}
126 inline IdNamespaceSummary& WithType(IdNamespaceType&& value) { SetType(std::move(value)); return *this;}
128
130
133 inline const Aws::Utils::DateTime& GetUpdatedAt() const{ return m_updatedAt; }
134 inline bool UpdatedAtHasBeenSet() const { return m_updatedAtHasBeenSet; }
135 inline void SetUpdatedAt(const Aws::Utils::DateTime& value) { m_updatedAtHasBeenSet = true; m_updatedAt = value; }
136 inline void SetUpdatedAt(Aws::Utils::DateTime&& value) { m_updatedAtHasBeenSet = true; m_updatedAt = std::move(value); }
137 inline IdNamespaceSummary& WithUpdatedAt(const Aws::Utils::DateTime& value) { SetUpdatedAt(value); return *this;}
138 inline IdNamespaceSummary& WithUpdatedAt(Aws::Utils::DateTime&& value) { SetUpdatedAt(std::move(value)); return *this;}
140 private:
141
142 Aws::Utils::DateTime m_createdAt;
143 bool m_createdAtHasBeenSet = false;
144
145 Aws::String m_description;
146 bool m_descriptionHasBeenSet = false;
147
148 Aws::Vector<IdNamespaceIdMappingWorkflowMetadata> m_idMappingWorkflowProperties;
149 bool m_idMappingWorkflowPropertiesHasBeenSet = false;
150
151 Aws::String m_idNamespaceArn;
152 bool m_idNamespaceArnHasBeenSet = false;
153
154 Aws::String m_idNamespaceName;
155 bool m_idNamespaceNameHasBeenSet = false;
156
157 IdNamespaceType m_type;
158 bool m_typeHasBeenSet = false;
159
160 Aws::Utils::DateTime m_updatedAt;
161 bool m_updatedAtHasBeenSet = false;
162 };
163
164} // namespace Model
165} // namespace EntityResolution
166} // namespace Aws
const Aws::Utils::DateTime & GetUpdatedAt() const
IdNamespaceSummary & WithIdNamespaceName(Aws::String &&value)
IdNamespaceSummary & WithIdMappingWorkflowProperties(const Aws::Vector< IdNamespaceIdMappingWorkflowMetadata > &value)
void SetUpdatedAt(const Aws::Utils::DateTime &value)
IdNamespaceSummary & AddIdMappingWorkflowProperties(const IdNamespaceIdMappingWorkflowMetadata &value)
IdNamespaceSummary & WithDescription(const Aws::String &value)
AWS_ENTITYRESOLUTION_API IdNamespaceSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
IdNamespaceSummary & WithCreatedAt(const Aws::Utils::DateTime &value)
void SetCreatedAt(Aws::Utils::DateTime &&value)
IdNamespaceSummary & WithIdMappingWorkflowProperties(Aws::Vector< IdNamespaceIdMappingWorkflowMetadata > &&value)
IdNamespaceSummary & WithIdNamespaceArn(const Aws::String &value)
const Aws::Vector< IdNamespaceIdMappingWorkflowMetadata > & GetIdMappingWorkflowProperties() const
IdNamespaceSummary & WithType(const IdNamespaceType &value)
AWS_ENTITYRESOLUTION_API IdNamespaceSummary(Aws::Utils::Json::JsonView jsonValue)
IdNamespaceSummary & WithUpdatedAt(const Aws::Utils::DateTime &value)
IdNamespaceSummary & WithIdNamespaceName(const char *value)
IdNamespaceSummary & WithDescription(Aws::String &&value)
IdNamespaceSummary & WithIdNamespaceArn(const char *value)
IdNamespaceSummary & WithDescription(const char *value)
IdNamespaceSummary & WithUpdatedAt(Aws::Utils::DateTime &&value)
AWS_ENTITYRESOLUTION_API Aws::Utils::Json::JsonValue Jsonize() const
IdNamespaceSummary & WithCreatedAt(Aws::Utils::DateTime &&value)
void SetUpdatedAt(Aws::Utils::DateTime &&value)
IdNamespaceSummary & WithIdNamespaceArn(Aws::String &&value)
void SetIdMappingWorkflowProperties(const Aws::Vector< IdNamespaceIdMappingWorkflowMetadata > &value)
IdNamespaceSummary & WithIdNamespaceName(const Aws::String &value)
IdNamespaceSummary & AddIdMappingWorkflowProperties(IdNamespaceIdMappingWorkflowMetadata &&value)
void SetIdMappingWorkflowProperties(Aws::Vector< IdNamespaceIdMappingWorkflowMetadata > &&value)
const Aws::Utils::DateTime & GetCreatedAt() const
void SetCreatedAt(const Aws::Utils::DateTime &value)
IdNamespaceSummary & WithType(IdNamespaceType &&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