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

Self-managed resources.

See Also:

AWS * API Reference

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

Self-managed resources target destination.

*/ inline const Aws::Vector& GetTargetDestination() const{ return m_targetDestination; } /** *

Self-managed resources target destination.

*/ inline bool TargetDestinationHasBeenSet() const { return m_targetDestinationHasBeenSet; } /** *

Self-managed resources target destination.

*/ inline void SetTargetDestination(const Aws::Vector& value) { m_targetDestinationHasBeenSet = true; m_targetDestination = value; } /** *

Self-managed resources target destination.

*/ inline void SetTargetDestination(Aws::Vector&& value) { m_targetDestinationHasBeenSet = true; m_targetDestination = std::move(value); } /** *

Self-managed resources target destination.

*/ inline SelfManageResources& WithTargetDestination(const Aws::Vector& value) { SetTargetDestination(value); return *this;} /** *

Self-managed resources target destination.

*/ inline SelfManageResources& WithTargetDestination(Aws::Vector&& value) { SetTargetDestination(std::move(value)); return *this;} /** *

Self-managed resources target destination.

*/ inline SelfManageResources& AddTargetDestination(const SelfManageTargetDestination& value) { m_targetDestinationHasBeenSet = true; m_targetDestination.push_back(value); return *this; } /** *

Self-managed resources target destination.

*/ inline SelfManageResources& AddTargetDestination(SelfManageTargetDestination&& value) { m_targetDestinationHasBeenSet = true; m_targetDestination.push_back(std::move(value)); return *this; } private: Aws::Vector m_targetDestination; bool m_targetDestinationHasBeenSet = false; }; } // namespace Model } // namespace MigrationHubStrategyRecommendations } // namespace Aws