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

Information of the transformation tool that can be used to migrate and * modernize the application.

See Also:

AWS * API Reference

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

Description of the tool.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

Description of the tool.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

Description of the tool.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

Description of the tool.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

Description of the tool.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

Description of the tool.

*/ inline TransformationTool& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

Description of the tool.

*/ inline TransformationTool& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

Description of the tool.

*/ inline TransformationTool& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

Name of the tool.

*/ inline const TransformationToolName& GetName() const{ return m_name; } /** *

Name of the tool.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

Name of the tool.

*/ inline void SetName(const TransformationToolName& value) { m_nameHasBeenSet = true; m_name = value; } /** *

Name of the tool.

*/ inline void SetName(TransformationToolName&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

Name of the tool.

*/ inline TransformationTool& WithName(const TransformationToolName& value) { SetName(value); return *this;} /** *

Name of the tool.

*/ inline TransformationTool& WithName(TransformationToolName&& value) { SetName(std::move(value)); return *this;} /** *

URL for installing the tool.

*/ inline const Aws::String& GetTranformationToolInstallationLink() const{ return m_tranformationToolInstallationLink; } /** *

URL for installing the tool.

*/ inline bool TranformationToolInstallationLinkHasBeenSet() const { return m_tranformationToolInstallationLinkHasBeenSet; } /** *

URL for installing the tool.

*/ inline void SetTranformationToolInstallationLink(const Aws::String& value) { m_tranformationToolInstallationLinkHasBeenSet = true; m_tranformationToolInstallationLink = value; } /** *

URL for installing the tool.

*/ inline void SetTranformationToolInstallationLink(Aws::String&& value) { m_tranformationToolInstallationLinkHasBeenSet = true; m_tranformationToolInstallationLink = std::move(value); } /** *

URL for installing the tool.

*/ inline void SetTranformationToolInstallationLink(const char* value) { m_tranformationToolInstallationLinkHasBeenSet = true; m_tranformationToolInstallationLink.assign(value); } /** *

URL for installing the tool.

*/ inline TransformationTool& WithTranformationToolInstallationLink(const Aws::String& value) { SetTranformationToolInstallationLink(value); return *this;} /** *

URL for installing the tool.

*/ inline TransformationTool& WithTranformationToolInstallationLink(Aws::String&& value) { SetTranformationToolInstallationLink(std::move(value)); return *this;} /** *

URL for installing the tool.

*/ inline TransformationTool& WithTranformationToolInstallationLink(const char* value) { SetTranformationToolInstallationLink(value); return *this;} private: Aws::String m_description; bool m_descriptionHasBeenSet = false; TransformationToolName m_name; bool m_nameHasBeenSet = false; Aws::String m_tranformationToolInstallationLink; bool m_tranformationToolInstallationLinkHasBeenSet = false; }; } // namespace Model } // namespace MigrationHubStrategyRecommendations } // namespace Aws