AWS SDK for C++

AWS SDK for C++ Version 1.11.644

Loading...
Searching...
No Matches
SchemaMappingSummary.h
1
6#pragma once
7#include <aws/entityresolution/EntityResolution_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/DateTime.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace EntityResolution
23{
24namespace Model
25{
26
35 {
36 public:
37 AWS_ENTITYRESOLUTION_API SchemaMappingSummary() = default;
38 AWS_ENTITYRESOLUTION_API SchemaMappingSummary(Aws::Utils::Json::JsonView jsonValue);
39 AWS_ENTITYRESOLUTION_API SchemaMappingSummary& operator=(Aws::Utils::Json::JsonView jsonValue);
40 AWS_ENTITYRESOLUTION_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
47 inline const Aws::String& GetSchemaName() const { return m_schemaName; }
48 inline bool SchemaNameHasBeenSet() const { return m_schemaNameHasBeenSet; }
49 template<typename SchemaNameT = Aws::String>
50 void SetSchemaName(SchemaNameT&& value) { m_schemaNameHasBeenSet = true; m_schemaName = std::forward<SchemaNameT>(value); }
51 template<typename SchemaNameT = Aws::String>
52 SchemaMappingSummary& WithSchemaName(SchemaNameT&& value) { SetSchemaName(std::forward<SchemaNameT>(value)); return *this;}
54
56
60 inline const Aws::String& GetSchemaArn() const { return m_schemaArn; }
61 inline bool SchemaArnHasBeenSet() const { return m_schemaArnHasBeenSet; }
62 template<typename SchemaArnT = Aws::String>
63 void SetSchemaArn(SchemaArnT&& value) { m_schemaArnHasBeenSet = true; m_schemaArn = std::forward<SchemaArnT>(value); }
64 template<typename SchemaArnT = Aws::String>
65 SchemaMappingSummary& WithSchemaArn(SchemaArnT&& value) { SetSchemaArn(std::forward<SchemaArnT>(value)); return *this;}
67
69
72 inline const Aws::Utils::DateTime& GetCreatedAt() const { return m_createdAt; }
73 inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; }
74 template<typename CreatedAtT = Aws::Utils::DateTime>
75 void SetCreatedAt(CreatedAtT&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::forward<CreatedAtT>(value); }
76 template<typename CreatedAtT = Aws::Utils::DateTime>
77 SchemaMappingSummary& WithCreatedAt(CreatedAtT&& value) { SetCreatedAt(std::forward<CreatedAtT>(value)); return *this;}
79
81
84 inline const Aws::Utils::DateTime& GetUpdatedAt() const { return m_updatedAt; }
85 inline bool UpdatedAtHasBeenSet() const { return m_updatedAtHasBeenSet; }
86 template<typename UpdatedAtT = Aws::Utils::DateTime>
87 void SetUpdatedAt(UpdatedAtT&& value) { m_updatedAtHasBeenSet = true; m_updatedAt = std::forward<UpdatedAtT>(value); }
88 template<typename UpdatedAtT = Aws::Utils::DateTime>
89 SchemaMappingSummary& WithUpdatedAt(UpdatedAtT&& value) { SetUpdatedAt(std::forward<UpdatedAtT>(value)); return *this;}
91
93
96 inline bool GetHasWorkflows() const { return m_hasWorkflows; }
97 inline bool HasWorkflowsHasBeenSet() const { return m_hasWorkflowsHasBeenSet; }
98 inline void SetHasWorkflows(bool value) { m_hasWorkflowsHasBeenSet = true; m_hasWorkflows = value; }
99 inline SchemaMappingSummary& WithHasWorkflows(bool value) { SetHasWorkflows(value); return *this;}
101 private:
102
103 Aws::String m_schemaName;
104 bool m_schemaNameHasBeenSet = false;
105
106 Aws::String m_schemaArn;
107 bool m_schemaArnHasBeenSet = false;
108
109 Aws::Utils::DateTime m_createdAt{};
110 bool m_createdAtHasBeenSet = false;
111
112 Aws::Utils::DateTime m_updatedAt{};
113 bool m_updatedAtHasBeenSet = false;
114
115 bool m_hasWorkflows{false};
116 bool m_hasWorkflowsHasBeenSet = false;
117 };
118
119} // namespace Model
120} // namespace EntityResolution
121} // namespace Aws
AWS_ENTITYRESOLUTION_API SchemaMappingSummary(Aws::Utils::Json::JsonView jsonValue)
AWS_ENTITYRESOLUTION_API SchemaMappingSummary()=default
SchemaMappingSummary & WithCreatedAt(CreatedAtT &&value)
AWS_ENTITYRESOLUTION_API SchemaMappingSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
SchemaMappingSummary & WithSchemaName(SchemaNameT &&value)
AWS_ENTITYRESOLUTION_API Aws::Utils::Json::JsonValue Jsonize() const
SchemaMappingSummary & WithUpdatedAt(UpdatedAtT &&value)
SchemaMappingSummary & WithHasWorkflows(bool value)
const Aws::Utils::DateTime & GetCreatedAt() const
const Aws::Utils::DateTime & GetUpdatedAt() const
SchemaMappingSummary & WithSchemaArn(SchemaArnT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue