AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
IdMappingWorkflowInputSource.h
1
6#pragma once
7#include <aws/entityresolution/EntityResolution_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/entityresolution/model/IdNamespaceType.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 IdMappingWorkflowInputSource();
37 AWS_ENTITYRESOLUTION_API IdMappingWorkflowInputSource(Aws::Utils::Json::JsonView jsonValue);
39 AWS_ENTITYRESOLUTION_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const Aws::String& GetInputSourceARN() const{ return m_inputSourceARN; }
48 inline bool InputSourceARNHasBeenSet() const { return m_inputSourceARNHasBeenSet; }
49 inline void SetInputSourceARN(const Aws::String& value) { m_inputSourceARNHasBeenSet = true; m_inputSourceARN = value; }
50 inline void SetInputSourceARN(Aws::String&& value) { m_inputSourceARNHasBeenSet = true; m_inputSourceARN = std::move(value); }
51 inline void SetInputSourceARN(const char* value) { m_inputSourceARNHasBeenSet = true; m_inputSourceARN.assign(value); }
53 inline IdMappingWorkflowInputSource& WithInputSourceARN(Aws::String&& value) { SetInputSourceARN(std::move(value)); return *this;}
54 inline IdMappingWorkflowInputSource& WithInputSourceARN(const char* value) { SetInputSourceARN(value); return *this;}
56
58
61 inline const Aws::String& GetSchemaName() const{ return m_schemaName; }
62 inline bool SchemaNameHasBeenSet() const { return m_schemaNameHasBeenSet; }
63 inline void SetSchemaName(const Aws::String& value) { m_schemaNameHasBeenSet = true; m_schemaName = value; }
64 inline void SetSchemaName(Aws::String&& value) { m_schemaNameHasBeenSet = true; m_schemaName = std::move(value); }
65 inline void SetSchemaName(const char* value) { m_schemaNameHasBeenSet = true; m_schemaName.assign(value); }
66 inline IdMappingWorkflowInputSource& WithSchemaName(const Aws::String& value) { SetSchemaName(value); return *this;}
67 inline IdMappingWorkflowInputSource& WithSchemaName(Aws::String&& value) { SetSchemaName(std::move(value)); return *this;}
68 inline IdMappingWorkflowInputSource& WithSchemaName(const char* value) { SetSchemaName(value); return *this;}
70
72
79 inline const IdNamespaceType& GetType() const{ return m_type; }
80 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
81 inline void SetType(const IdNamespaceType& value) { m_typeHasBeenSet = true; m_type = value; }
82 inline void SetType(IdNamespaceType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); }
83 inline IdMappingWorkflowInputSource& WithType(const IdNamespaceType& value) { SetType(value); return *this;}
84 inline IdMappingWorkflowInputSource& WithType(IdNamespaceType&& value) { SetType(std::move(value)); return *this;}
86 private:
87
88 Aws::String m_inputSourceARN;
89 bool m_inputSourceARNHasBeenSet = false;
90
91 Aws::String m_schemaName;
92 bool m_schemaNameHasBeenSet = false;
93
94 IdNamespaceType m_type;
95 bool m_typeHasBeenSet = false;
96 };
97
98} // namespace Model
99} // namespace EntityResolution
100} // namespace Aws
IdMappingWorkflowInputSource & WithInputSourceARN(const Aws::String &value)
IdMappingWorkflowInputSource & WithSchemaName(Aws::String &&value)
IdMappingWorkflowInputSource & WithSchemaName(const Aws::String &value)
AWS_ENTITYRESOLUTION_API IdMappingWorkflowInputSource(Aws::Utils::Json::JsonView jsonValue)
IdMappingWorkflowInputSource & WithInputSourceARN(Aws::String &&value)
IdMappingWorkflowInputSource & WithSchemaName(const char *value)
IdMappingWorkflowInputSource & WithType(const IdNamespaceType &value)
AWS_ENTITYRESOLUTION_API IdMappingWorkflowInputSource & operator=(Aws::Utils::Json::JsonView jsonValue)
IdMappingWorkflowInputSource & WithInputSourceARN(const char *value)
AWS_ENTITYRESOLUTION_API Aws::Utils::Json::JsonValue Jsonize() const
IdMappingWorkflowInputSource & WithType(IdNamespaceType &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue