/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The profile properties required by the custom connector.See
* Also:
AWS
* API Reference
A map of properties that are required to create a profile for the custom * connector.
*/ inline const Aws::MapA map of properties that are required to create a profile for the custom * connector.
*/ inline bool ProfilePropertiesHasBeenSet() const { return m_profilePropertiesHasBeenSet; } /** *A map of properties that are required to create a profile for the custom * connector.
*/ inline void SetProfileProperties(const Aws::MapA map of properties that are required to create a profile for the custom * connector.
*/ inline void SetProfileProperties(Aws::MapA map of properties that are required to create a profile for the custom * connector.
*/ inline CustomConnectorProfileProperties& WithProfileProperties(const Aws::MapA map of properties that are required to create a profile for the custom * connector.
*/ inline CustomConnectorProfileProperties& WithProfileProperties(Aws::MapA map of properties that are required to create a profile for the custom * connector.
*/ inline CustomConnectorProfileProperties& AddProfileProperties(const Aws::String& key, const Aws::String& value) { m_profilePropertiesHasBeenSet = true; m_profileProperties.emplace(key, value); return *this; } /** *A map of properties that are required to create a profile for the custom * connector.
*/ inline CustomConnectorProfileProperties& AddProfileProperties(Aws::String&& key, const Aws::String& value) { m_profilePropertiesHasBeenSet = true; m_profileProperties.emplace(std::move(key), value); return *this; } /** *A map of properties that are required to create a profile for the custom * connector.
*/ inline CustomConnectorProfileProperties& AddProfileProperties(const Aws::String& key, Aws::String&& value) { m_profilePropertiesHasBeenSet = true; m_profileProperties.emplace(key, std::move(value)); return *this; } /** *A map of properties that are required to create a profile for the custom * connector.
*/ inline CustomConnectorProfileProperties& AddProfileProperties(Aws::String&& key, Aws::String&& value) { m_profilePropertiesHasBeenSet = true; m_profileProperties.emplace(std::move(key), std::move(value)); return *this; } /** *A map of properties that are required to create a profile for the custom * connector.
*/ inline CustomConnectorProfileProperties& AddProfileProperties(const char* key, Aws::String&& value) { m_profilePropertiesHasBeenSet = true; m_profileProperties.emplace(key, std::move(value)); return *this; } /** *A map of properties that are required to create a profile for the custom * connector.
*/ inline CustomConnectorProfileProperties& AddProfileProperties(Aws::String&& key, const char* value) { m_profilePropertiesHasBeenSet = true; m_profileProperties.emplace(std::move(key), value); return *this; } /** *A map of properties that are required to create a profile for the custom * connector.
*/ inline CustomConnectorProfileProperties& AddProfileProperties(const char* key, const char* value) { m_profilePropertiesHasBeenSet = true; m_profileProperties.emplace(key, value); return *this; } inline const OAuth2Properties& GetOAuth2Properties() const{ return m_oAuth2Properties; } inline bool OAuth2PropertiesHasBeenSet() const { return m_oAuth2PropertiesHasBeenSet; } inline void SetOAuth2Properties(const OAuth2Properties& value) { m_oAuth2PropertiesHasBeenSet = true; m_oAuth2Properties = value; } inline void SetOAuth2Properties(OAuth2Properties&& value) { m_oAuth2PropertiesHasBeenSet = true; m_oAuth2Properties = std::move(value); } inline CustomConnectorProfileProperties& WithOAuth2Properties(const OAuth2Properties& value) { SetOAuth2Properties(value); return *this;} inline CustomConnectorProfileProperties& WithOAuth2Properties(OAuth2Properties&& value) { SetOAuth2Properties(std::move(value)); return *this;} private: Aws::Map