AWS SDK for C++

AWS SDK for C++ Version 1.11.750

Loading...
Searching...
No Matches
ProviderProperties.h
1
6#pragma once
7#include <aws/core/utils/Document.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/entityresolution/EntityResolution_EXPORTS.h>
10#include <aws/entityresolution/model/IntermediateSourceConfiguration.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Utils {
16namespace Json {
17class JsonValue;
18class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace EntityResolution {
22namespace Model {
23
32 public:
33 AWS_ENTITYRESOLUTION_API ProviderProperties() = default;
34 AWS_ENTITYRESOLUTION_API ProviderProperties(Aws::Utils::Json::JsonView jsonValue);
35 AWS_ENTITYRESOLUTION_API ProviderProperties& operator=(Aws::Utils::Json::JsonView jsonValue);
36 AWS_ENTITYRESOLUTION_API Aws::Utils::Json::JsonValue Jsonize() const;
37
39
42 inline const Aws::String& GetProviderServiceArn() const { return m_providerServiceArn; }
43 inline bool ProviderServiceArnHasBeenSet() const { return m_providerServiceArnHasBeenSet; }
44 template <typename ProviderServiceArnT = Aws::String>
45 void SetProviderServiceArn(ProviderServiceArnT&& value) {
46 m_providerServiceArnHasBeenSet = true;
47 m_providerServiceArn = std::forward<ProviderServiceArnT>(value);
48 }
49 template <typename ProviderServiceArnT = Aws::String>
50 ProviderProperties& WithProviderServiceArn(ProviderServiceArnT&& value) {
51 SetProviderServiceArn(std::forward<ProviderServiceArnT>(value));
52 return *this;
53 }
55
57
60 inline Aws::Utils::DocumentView GetProviderConfiguration() const { return m_providerConfiguration; }
61 inline bool ProviderConfigurationHasBeenSet() const { return m_providerConfigurationHasBeenSet; }
62 template <typename ProviderConfigurationT = Aws::Utils::Document>
63 void SetProviderConfiguration(ProviderConfigurationT&& value) {
64 m_providerConfigurationHasBeenSet = true;
65 m_providerConfiguration = std::forward<ProviderConfigurationT>(value);
66 }
67 template <typename ProviderConfigurationT = Aws::Utils::Document>
68 ProviderProperties& WithProviderConfiguration(ProviderConfigurationT&& value) {
69 SetProviderConfiguration(std::forward<ProviderConfigurationT>(value));
70 return *this;
71 }
73
75
79 inline const IntermediateSourceConfiguration& GetIntermediateSourceConfiguration() const { return m_intermediateSourceConfiguration; }
80 inline bool IntermediateSourceConfigurationHasBeenSet() const { return m_intermediateSourceConfigurationHasBeenSet; }
81 template <typename IntermediateSourceConfigurationT = IntermediateSourceConfiguration>
82 void SetIntermediateSourceConfiguration(IntermediateSourceConfigurationT&& value) {
83 m_intermediateSourceConfigurationHasBeenSet = true;
84 m_intermediateSourceConfiguration = std::forward<IntermediateSourceConfigurationT>(value);
85 }
86 template <typename IntermediateSourceConfigurationT = IntermediateSourceConfiguration>
87 ProviderProperties& WithIntermediateSourceConfiguration(IntermediateSourceConfigurationT&& value) {
88 SetIntermediateSourceConfiguration(std::forward<IntermediateSourceConfigurationT>(value));
89 return *this;
90 }
92 private:
93 Aws::String m_providerServiceArn;
94
95 Aws::Utils::Document m_providerConfiguration;
96
97 IntermediateSourceConfiguration m_intermediateSourceConfiguration;
98 bool m_providerServiceArnHasBeenSet = false;
99 bool m_providerConfigurationHasBeenSet = false;
100 bool m_intermediateSourceConfigurationHasBeenSet = false;
101};
102
103} // namespace Model
104} // namespace EntityResolution
105} // namespace Aws
AWS_ENTITYRESOLUTION_API ProviderProperties & operator=(Aws::Utils::Json::JsonView jsonValue)
ProviderProperties & WithProviderConfiguration(ProviderConfigurationT &&value)
AWS_ENTITYRESOLUTION_API Aws::Utils::Json::JsonValue Jsonize() const
void SetProviderServiceArn(ProviderServiceArnT &&value)
ProviderProperties & WithIntermediateSourceConfiguration(IntermediateSourceConfigurationT &&value)
const IntermediateSourceConfiguration & GetIntermediateSourceConfiguration() const
ProviderProperties & WithProviderServiceArn(ProviderServiceArnT &&value)
void SetProviderConfiguration(ProviderConfigurationT &&value)
AWS_ENTITYRESOLUTION_API ProviderProperties(Aws::Utils::Json::JsonView jsonValue)
AWS_ENTITYRESOLUTION_API ProviderProperties()=default
void SetIntermediateSourceConfiguration(IntermediateSourceConfigurationT &&value)
Aws::Utils::DocumentView GetProviderConfiguration() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue