AWS SDK for C++

AWS SDK for C++ Version 1.11.606

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
34 {
35 public:
36 AWS_ENTITYRESOLUTION_API SchemaMappingSummary() = default;
37 AWS_ENTITYRESOLUTION_API SchemaMappingSummary(Aws::Utils::Json::JsonView jsonValue);
38 AWS_ENTITYRESOLUTION_API SchemaMappingSummary& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_ENTITYRESOLUTION_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetSchemaName() const { return m_schemaName; }
47 inline bool SchemaNameHasBeenSet() const { return m_schemaNameHasBeenSet; }
48 template<typename SchemaNameT = Aws::String>
49 void SetSchemaName(SchemaNameT&& value) { m_schemaNameHasBeenSet = true; m_schemaName = std::forward<SchemaNameT>(value); }
50 template<typename SchemaNameT = Aws::String>
51 SchemaMappingSummary& WithSchemaName(SchemaNameT&& value) { SetSchemaName(std::forward<SchemaNameT>(value)); return *this;}
53
55
59 inline const Aws::String& GetSchemaArn() const { return m_schemaArn; }
60 inline bool SchemaArnHasBeenSet() const { return m_schemaArnHasBeenSet; }
61 template<typename SchemaArnT = Aws::String>
62 void SetSchemaArn(SchemaArnT&& value) { m_schemaArnHasBeenSet = true; m_schemaArn = std::forward<SchemaArnT>(value); }
63 template<typename SchemaArnT = Aws::String>
64 SchemaMappingSummary& WithSchemaArn(SchemaArnT&& value) { SetSchemaArn(std::forward<SchemaArnT>(value)); return *this;}
66
68
71 inline const Aws::Utils::DateTime& GetCreatedAt() const { return m_createdAt; }
72 inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; }
73 template<typename CreatedAtT = Aws::Utils::DateTime>
74 void SetCreatedAt(CreatedAtT&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::forward<CreatedAtT>(value); }
75 template<typename CreatedAtT = Aws::Utils::DateTime>
76 SchemaMappingSummary& WithCreatedAt(CreatedAtT&& value) { SetCreatedAt(std::forward<CreatedAtT>(value)); return *this;}
78
80
83 inline const Aws::Utils::DateTime& GetUpdatedAt() const { return m_updatedAt; }
84 inline bool UpdatedAtHasBeenSet() const { return m_updatedAtHasBeenSet; }
85 template<typename UpdatedAtT = Aws::Utils::DateTime>
86 void SetUpdatedAt(UpdatedAtT&& value) { m_updatedAtHasBeenSet = true; m_updatedAt = std::forward<UpdatedAtT>(value); }
87 template<typename UpdatedAtT = Aws::Utils::DateTime>
88 SchemaMappingSummary& WithUpdatedAt(UpdatedAtT&& value) { SetUpdatedAt(std::forward<UpdatedAtT>(value)); return *this;}
90
92
95 inline bool GetHasWorkflows() const { return m_hasWorkflows; }
96 inline bool HasWorkflowsHasBeenSet() const { return m_hasWorkflowsHasBeenSet; }
97 inline void SetHasWorkflows(bool value) { m_hasWorkflowsHasBeenSet = true; m_hasWorkflows = value; }
98 inline SchemaMappingSummary& WithHasWorkflows(bool value) { SetHasWorkflows(value); return *this;}
100 private:
101
102 Aws::String m_schemaName;
103 bool m_schemaNameHasBeenSet = false;
104
105 Aws::String m_schemaArn;
106 bool m_schemaArnHasBeenSet = false;
107
108 Aws::Utils::DateTime m_createdAt{};
109 bool m_createdAtHasBeenSet = false;
110
111 Aws::Utils::DateTime m_updatedAt{};
112 bool m_updatedAtHasBeenSet = false;
113
114 bool m_hasWorkflows{false};
115 bool m_hasWorkflowsHasBeenSet = false;
116 };
117
118} // namespace Model
119} // namespace EntityResolution
120} // 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