AWS SDK for C++

AWS SDK for C++ Version 1.11.751

Loading...
Searching...
No Matches
InputSource.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/entityresolution/EntityResolution_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace EntityResolution {
20namespace Model {
21
29 public:
30 AWS_ENTITYRESOLUTION_API InputSource() = default;
31 AWS_ENTITYRESOLUTION_API InputSource(Aws::Utils::Json::JsonView jsonValue);
32 AWS_ENTITYRESOLUTION_API InputSource& operator=(Aws::Utils::Json::JsonView jsonValue);
33 AWS_ENTITYRESOLUTION_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
39 inline const Aws::String& GetInputSourceARN() const { return m_inputSourceARN; }
40 inline bool InputSourceARNHasBeenSet() const { return m_inputSourceARNHasBeenSet; }
41 template <typename InputSourceARNT = Aws::String>
42 void SetInputSourceARN(InputSourceARNT&& value) {
43 m_inputSourceARNHasBeenSet = true;
44 m_inputSourceARN = std::forward<InputSourceARNT>(value);
45 }
46 template <typename InputSourceARNT = Aws::String>
47 InputSource& WithInputSourceARN(InputSourceARNT&& value) {
48 SetInputSourceARN(std::forward<InputSourceARNT>(value));
49 return *this;
50 }
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) {
61 m_schemaNameHasBeenSet = true;
62 m_schemaName = std::forward<SchemaNameT>(value);
63 }
64 template <typename SchemaNameT = Aws::String>
65 InputSource& WithSchemaName(SchemaNameT&& value) {
66 SetSchemaName(std::forward<SchemaNameT>(value));
67 return *this;
68 }
70
72
79 inline bool GetApplyNormalization() const { return m_applyNormalization; }
80 inline bool ApplyNormalizationHasBeenSet() const { return m_applyNormalizationHasBeenSet; }
81 inline void SetApplyNormalization(bool value) {
82 m_applyNormalizationHasBeenSet = true;
83 m_applyNormalization = value;
84 }
85 inline InputSource& WithApplyNormalization(bool value) {
87 return *this;
88 }
90 private:
91 Aws::String m_inputSourceARN;
92
93 Aws::String m_schemaName;
94
95 bool m_applyNormalization{false};
96 bool m_inputSourceARNHasBeenSet = false;
97 bool m_schemaNameHasBeenSet = false;
98 bool m_applyNormalizationHasBeenSet = false;
99};
100
101} // namespace Model
102} // namespace EntityResolution
103} // namespace Aws
InputSource & WithSchemaName(SchemaNameT &&value)
Definition InputSource.h:65
AWS_ENTITYRESOLUTION_API InputSource()=default
const Aws::String & GetSchemaName() const
Definition InputSource.h:57
InputSource & WithApplyNormalization(bool value)
Definition InputSource.h:85
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:39
AWS_ENTITYRESOLUTION_API Aws::Utils::Json::JsonValue Jsonize() const
InputSource & WithInputSourceARN(InputSourceARNT &&value)
Definition InputSource.h:47
AWS_ENTITYRESOLUTION_API InputSource(Aws::Utils::Json::JsonView jsonValue)
void SetInputSourceARN(InputSourceARNT &&value)
Definition InputSource.h:42
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue