AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ProviderProperties.h
1
6#pragma once
7#include <aws/entityresolution/EntityResolution_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/Document.h>
10#include <aws/entityresolution/model/IntermediateSourceConfiguration.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Json
18{
19 class JsonValue;
20 class JsonView;
21} // namespace Json
22} // namespace Utils
23namespace EntityResolution
24{
25namespace Model
26{
27
36 {
37 public:
38 AWS_ENTITYRESOLUTION_API ProviderProperties() = default;
39 AWS_ENTITYRESOLUTION_API ProviderProperties(Aws::Utils::Json::JsonView jsonValue);
40 AWS_ENTITYRESOLUTION_API ProviderProperties& operator=(Aws::Utils::Json::JsonView jsonValue);
41 AWS_ENTITYRESOLUTION_API Aws::Utils::Json::JsonValue Jsonize() const;
42
43
45
48 inline const Aws::String& GetProviderServiceArn() const { return m_providerServiceArn; }
49 inline bool ProviderServiceArnHasBeenSet() const { return m_providerServiceArnHasBeenSet; }
50 template<typename ProviderServiceArnT = Aws::String>
51 void SetProviderServiceArn(ProviderServiceArnT&& value) { m_providerServiceArnHasBeenSet = true; m_providerServiceArn = std::forward<ProviderServiceArnT>(value); }
52 template<typename ProviderServiceArnT = Aws::String>
53 ProviderProperties& WithProviderServiceArn(ProviderServiceArnT&& value) { SetProviderServiceArn(std::forward<ProviderServiceArnT>(value)); return *this;}
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) { m_providerConfigurationHasBeenSet = true; m_providerConfiguration = std::forward<ProviderConfigurationT>(value); }
64 template<typename ProviderConfigurationT = Aws::Utils::Document>
65 ProviderProperties& WithProviderConfiguration(ProviderConfigurationT&& value) { SetProviderConfiguration(std::forward<ProviderConfigurationT>(value)); return *this;}
67
69
73 inline const IntermediateSourceConfiguration& GetIntermediateSourceConfiguration() const { return m_intermediateSourceConfiguration; }
74 inline bool IntermediateSourceConfigurationHasBeenSet() const { return m_intermediateSourceConfigurationHasBeenSet; }
75 template<typename IntermediateSourceConfigurationT = IntermediateSourceConfiguration>
76 void SetIntermediateSourceConfiguration(IntermediateSourceConfigurationT&& value) { m_intermediateSourceConfigurationHasBeenSet = true; m_intermediateSourceConfiguration = std::forward<IntermediateSourceConfigurationT>(value); }
77 template<typename IntermediateSourceConfigurationT = IntermediateSourceConfiguration>
78 ProviderProperties& WithIntermediateSourceConfiguration(IntermediateSourceConfigurationT&& value) { SetIntermediateSourceConfiguration(std::forward<IntermediateSourceConfigurationT>(value)); return *this;}
80 private:
81
82 Aws::String m_providerServiceArn;
83 bool m_providerServiceArnHasBeenSet = false;
84
85 Aws::Utils::Document m_providerConfiguration;
86 bool m_providerConfigurationHasBeenSet = false;
87
88 IntermediateSourceConfiguration m_intermediateSourceConfiguration;
89 bool m_intermediateSourceConfigurationHasBeenSet = false;
90 };
91
92} // namespace Model
93} // namespace EntityResolution
94} // 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