/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace CustomerProfiles { namespace Model { /** *

Configuration data for integration workflow.

See Also:

AWS * API Reference

*/ class IntegrationConfig { public: AWS_CUSTOMERPROFILES_API IntegrationConfig(); AWS_CUSTOMERPROFILES_API IntegrationConfig(Aws::Utils::Json::JsonView jsonValue); AWS_CUSTOMERPROFILES_API IntegrationConfig& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_CUSTOMERPROFILES_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

Configuration data for APPFLOW_INTEGRATION workflow type.

*/ inline const AppflowIntegration& GetAppflowIntegration() const{ return m_appflowIntegration; } /** *

Configuration data for APPFLOW_INTEGRATION workflow type.

*/ inline bool AppflowIntegrationHasBeenSet() const { return m_appflowIntegrationHasBeenSet; } /** *

Configuration data for APPFLOW_INTEGRATION workflow type.

*/ inline void SetAppflowIntegration(const AppflowIntegration& value) { m_appflowIntegrationHasBeenSet = true; m_appflowIntegration = value; } /** *

Configuration data for APPFLOW_INTEGRATION workflow type.

*/ inline void SetAppflowIntegration(AppflowIntegration&& value) { m_appflowIntegrationHasBeenSet = true; m_appflowIntegration = std::move(value); } /** *

Configuration data for APPFLOW_INTEGRATION workflow type.

*/ inline IntegrationConfig& WithAppflowIntegration(const AppflowIntegration& value) { SetAppflowIntegration(value); return *this;} /** *

Configuration data for APPFLOW_INTEGRATION workflow type.

*/ inline IntegrationConfig& WithAppflowIntegration(AppflowIntegration&& value) { SetAppflowIntegration(std::move(value)); return *this;} private: AppflowIntegration m_appflowIntegration; bool m_appflowIntegrationHasBeenSet = false; }; } // namespace Model } // namespace CustomerProfiles } // namespace Aws