AWS SDK for C++

AWS SDK for C++ Version 1.11.752

Loading...
Searching...
No Matches
IdNamespaceInputSource.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 IdNamespaceInputSource() = default;
31 AWS_ENTITYRESOLUTION_API IdNamespaceInputSource(Aws::Utils::Json::JsonView jsonValue);
32 AWS_ENTITYRESOLUTION_API IdNamespaceInputSource& operator=(Aws::Utils::Json::JsonView jsonValue);
33 AWS_ENTITYRESOLUTION_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
40 inline const Aws::String& GetInputSourceARN() const { return m_inputSourceARN; }
41 inline bool InputSourceARNHasBeenSet() const { return m_inputSourceARNHasBeenSet; }
42 template <typename InputSourceARNT = Aws::String>
43 void SetInputSourceARN(InputSourceARNT&& value) {
44 m_inputSourceARNHasBeenSet = true;
45 m_inputSourceARN = std::forward<InputSourceARNT>(value);
46 }
47 template <typename InputSourceARNT = Aws::String>
48 IdNamespaceInputSource& WithInputSourceARN(InputSourceARNT&& value) {
49 SetInputSourceARN(std::forward<InputSourceARNT>(value));
50 return *this;
51 }
53
55
58 inline const Aws::String& GetSchemaName() const { return m_schemaName; }
59 inline bool SchemaNameHasBeenSet() const { return m_schemaNameHasBeenSet; }
60 template <typename SchemaNameT = Aws::String>
61 void SetSchemaName(SchemaNameT&& value) {
62 m_schemaNameHasBeenSet = true;
63 m_schemaName = std::forward<SchemaNameT>(value);
64 }
65 template <typename SchemaNameT = Aws::String>
66 IdNamespaceInputSource& WithSchemaName(SchemaNameT&& value) {
67 SetSchemaName(std::forward<SchemaNameT>(value));
68 return *this;
69 }
71 private:
72 Aws::String m_inputSourceARN;
73
74 Aws::String m_schemaName;
75 bool m_inputSourceARNHasBeenSet = false;
76 bool m_schemaNameHasBeenSet = false;
77};
78
79} // namespace Model
80} // namespace EntityResolution
81} // namespace Aws
AWS_ENTITYRESOLUTION_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_ENTITYRESOLUTION_API IdNamespaceInputSource & operator=(Aws::Utils::Json::JsonView jsonValue)
IdNamespaceInputSource & WithInputSourceARN(InputSourceARNT &&value)
IdNamespaceInputSource & WithSchemaName(SchemaNameT &&value)
AWS_ENTITYRESOLUTION_API IdNamespaceInputSource()=default
AWS_ENTITYRESOLUTION_API IdNamespaceInputSource(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue