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

List containing steps in workflow.

See Also:

AWS * API Reference

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

Workflow step information specific to APPFLOW_INTEGRATION * workflow.

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

Workflow step information specific to APPFLOW_INTEGRATION * workflow.

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

Workflow step information specific to APPFLOW_INTEGRATION * workflow.

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

Workflow step information specific to APPFLOW_INTEGRATION * workflow.

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

Workflow step information specific to APPFLOW_INTEGRATION * workflow.

*/ inline WorkflowStepItem& WithAppflowIntegration(const AppflowIntegrationWorkflowStep& value) { SetAppflowIntegration(value); return *this;} /** *

Workflow step information specific to APPFLOW_INTEGRATION * workflow.

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