AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
InputSource.h
1
6#pragma once
7#include <aws/entityresolution/EntityResolution_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace EntityResolution
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_ENTITYRESOLUTION_API InputSource() = default;
36 AWS_ENTITYRESOLUTION_API InputSource(Aws::Utils::Json::JsonView jsonValue);
37 AWS_ENTITYRESOLUTION_API InputSource& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_ENTITYRESOLUTION_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetInputSourceARN() const { return m_inputSourceARN; }
46 inline bool InputSourceARNHasBeenSet() const { return m_inputSourceARNHasBeenSet; }
47 template<typename InputSourceARNT = Aws::String>
48 void SetInputSourceARN(InputSourceARNT&& value) { m_inputSourceARNHasBeenSet = true; m_inputSourceARN = std::forward<InputSourceARNT>(value); }
49 template<typename InputSourceARNT = Aws::String>
50 InputSource& WithInputSourceARN(InputSourceARNT&& value) { SetInputSourceARN(std::forward<InputSourceARNT>(value)); return *this;}
52
54
57 inline const Aws::String& GetSchemaName() const { return m_schemaName; }
58 inline bool SchemaNameHasBeenSet() const { return m_schemaNameHasBeenSet; }
59 template<typename SchemaNameT = Aws::String>
60 void SetSchemaName(SchemaNameT&& value) { m_schemaNameHasBeenSet = true; m_schemaName = std::forward<SchemaNameT>(value); }
61 template<typename SchemaNameT = Aws::String>
62 InputSource& WithSchemaName(SchemaNameT&& value) { SetSchemaName(std::forward<SchemaNameT>(value)); return *this;}
64
66
73 inline bool GetApplyNormalization() const { return m_applyNormalization; }
74 inline bool ApplyNormalizationHasBeenSet() const { return m_applyNormalizationHasBeenSet; }
75 inline void SetApplyNormalization(bool value) { m_applyNormalizationHasBeenSet = true; m_applyNormalization = value; }
76 inline InputSource& WithApplyNormalization(bool value) { SetApplyNormalization(value); return *this;}
78 private:
79
80 Aws::String m_inputSourceARN;
81 bool m_inputSourceARNHasBeenSet = false;
82
83 Aws::String m_schemaName;
84 bool m_schemaNameHasBeenSet = false;
85
86 bool m_applyNormalization{false};
87 bool m_applyNormalizationHasBeenSet = false;
88 };
89
90} // namespace Model
91} // namespace EntityResolution
92} // namespace Aws
InputSource & WithSchemaName(SchemaNameT &&value)
Definition InputSource.h:62
AWS_ENTITYRESOLUTION_API InputSource()=default
const Aws::String & GetSchemaName() const
Definition InputSource.h:57
InputSource & WithApplyNormalization(bool value)
Definition InputSource.h:76
AWS_ENTITYRESOLUTION_API InputSource & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetSchemaName(SchemaNameT &&value)
Definition InputSource.h:60
const Aws::String & GetInputSourceARN() const
Definition InputSource.h:45
AWS_ENTITYRESOLUTION_API Aws::Utils::Json::JsonValue Jsonize() const
InputSource & WithInputSourceARN(InputSourceARNT &&value)
Definition InputSource.h:50
AWS_ENTITYRESOLUTION_API InputSource(Aws::Utils::Json::JsonView jsonValue)
void SetInputSourceARN(InputSourceARNT &&value)
Definition InputSource.h:48
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue