AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CustomConnectorProfileProperties.h
1
6#pragma once
7#include <aws/appflow/Appflow_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSMap.h>
9#include <aws/appflow/model/OAuth2Properties.h>
10#include <aws/core/utils/memory/stl/AWSString.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 Appflow
24{
25namespace Model
26{
27
35 {
36 public:
40 AWS_APPFLOW_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
48 inline const Aws::Map<Aws::String, Aws::String>& GetProfileProperties() const{ return m_profileProperties; }
49 inline bool ProfilePropertiesHasBeenSet() const { return m_profilePropertiesHasBeenSet; }
50 inline void SetProfileProperties(const Aws::Map<Aws::String, Aws::String>& value) { m_profilePropertiesHasBeenSet = true; m_profileProperties = value; }
51 inline void SetProfileProperties(Aws::Map<Aws::String, Aws::String>&& value) { m_profilePropertiesHasBeenSet = true; m_profileProperties = std::move(value); }
54 inline CustomConnectorProfileProperties& AddProfileProperties(const Aws::String& key, const Aws::String& value) { m_profilePropertiesHasBeenSet = true; m_profileProperties.emplace(key, value); return *this; }
55 inline CustomConnectorProfileProperties& AddProfileProperties(Aws::String&& key, const Aws::String& value) { m_profilePropertiesHasBeenSet = true; m_profileProperties.emplace(std::move(key), value); return *this; }
56 inline CustomConnectorProfileProperties& AddProfileProperties(const Aws::String& key, Aws::String&& value) { m_profilePropertiesHasBeenSet = true; m_profileProperties.emplace(key, std::move(value)); return *this; }
57 inline CustomConnectorProfileProperties& AddProfileProperties(Aws::String&& key, Aws::String&& value) { m_profilePropertiesHasBeenSet = true; m_profileProperties.emplace(std::move(key), std::move(value)); return *this; }
58 inline CustomConnectorProfileProperties& AddProfileProperties(const char* key, Aws::String&& value) { m_profilePropertiesHasBeenSet = true; m_profileProperties.emplace(key, std::move(value)); return *this; }
59 inline CustomConnectorProfileProperties& AddProfileProperties(Aws::String&& key, const char* value) { m_profilePropertiesHasBeenSet = true; m_profileProperties.emplace(std::move(key), value); return *this; }
60 inline CustomConnectorProfileProperties& AddProfileProperties(const char* key, const char* value) { m_profilePropertiesHasBeenSet = true; m_profileProperties.emplace(key, value); return *this; }
62
64
65 inline const OAuth2Properties& GetOAuth2Properties() const{ return m_oAuth2Properties; }
66 inline bool OAuth2PropertiesHasBeenSet() const { return m_oAuth2PropertiesHasBeenSet; }
67 inline void SetOAuth2Properties(const OAuth2Properties& value) { m_oAuth2PropertiesHasBeenSet = true; m_oAuth2Properties = value; }
68 inline void SetOAuth2Properties(OAuth2Properties&& value) { m_oAuth2PropertiesHasBeenSet = true; m_oAuth2Properties = std::move(value); }
72 private:
73
74 Aws::Map<Aws::String, Aws::String> m_profileProperties;
75 bool m_profilePropertiesHasBeenSet = false;
76
77 OAuth2Properties m_oAuth2Properties;
78 bool m_oAuth2PropertiesHasBeenSet = false;
79 };
80
81} // namespace Model
82} // namespace Appflow
83} // namespace Aws
CustomConnectorProfileProperties & WithOAuth2Properties(OAuth2Properties &&value)
CustomConnectorProfileProperties & AddProfileProperties(Aws::String &&key, Aws::String &&value)
CustomConnectorProfileProperties & AddProfileProperties(const Aws::String &key, Aws::String &&value)
CustomConnectorProfileProperties & AddProfileProperties(Aws::String &&key, const char *value)
CustomConnectorProfileProperties & AddProfileProperties(const Aws::String &key, const Aws::String &value)
CustomConnectorProfileProperties & WithProfileProperties(const Aws::Map< Aws::String, Aws::String > &value)
CustomConnectorProfileProperties & AddProfileProperties(Aws::String &&key, const Aws::String &value)
AWS_APPFLOW_API CustomConnectorProfileProperties & operator=(Aws::Utils::Json::JsonView jsonValue)
CustomConnectorProfileProperties & AddProfileProperties(const char *key, Aws::String &&value)
AWS_APPFLOW_API Aws::Utils::Json::JsonValue Jsonize() const
void SetProfileProperties(const Aws::Map< Aws::String, Aws::String > &value)
const Aws::Map< Aws::String, Aws::String > & GetProfileProperties() const
AWS_APPFLOW_API CustomConnectorProfileProperties(Aws::Utils::Json::JsonView jsonValue)
CustomConnectorProfileProperties & AddProfileProperties(const char *key, const char *value)
CustomConnectorProfileProperties & WithProfileProperties(Aws::Map< Aws::String, Aws::String > &&value)
CustomConnectorProfileProperties & WithOAuth2Properties(const OAuth2Properties &value)
void SetProfileProperties(Aws::Map< Aws::String, Aws::String > &&value)
std::map< K, V, std::less< K >, Aws::Allocator< std::pair< const K, V > > > Map
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue