/** * 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 { /** *

Structure to hold workflow attributes.

See Also:

AWS * API Reference

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

Workflow attributes specific to APPFLOW_INTEGRATION * workflow.

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

Workflow attributes specific to APPFLOW_INTEGRATION * workflow.

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

Workflow attributes specific to APPFLOW_INTEGRATION * workflow.

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

Workflow attributes specific to APPFLOW_INTEGRATION * workflow.

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

Workflow attributes specific to APPFLOW_INTEGRATION * workflow.

*/ inline WorkflowAttributes& WithAppflowIntegration(const AppflowIntegrationWorkflowAttributes& value) { SetAppflowIntegration(value); return *this;} /** *

Workflow attributes specific to APPFLOW_INTEGRATION * workflow.

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