AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
RecommendationSet.h
1
6#pragma once
7#include <aws/migrationhubstrategy/MigrationHubStrategyRecommendations_EXPORTS.h>
8#include <aws/migrationhubstrategy/model/Strategy.h>
9#include <aws/migrationhubstrategy/model/TargetDestination.h>
10#include <aws/migrationhubstrategy/model/TransformationTool.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Json
18{
19 class JsonValue;
20 class JsonView;
21} // namespace Json
22} // namespace Utils
23namespace MigrationHubStrategyRecommendations
24{
25namespace Model
26{
27
34 {
35 public:
36 AWS_MIGRATIONHUBSTRATEGYRECOMMENDATIONS_API RecommendationSet();
37 AWS_MIGRATIONHUBSTRATEGYRECOMMENDATIONS_API RecommendationSet(Aws::Utils::Json::JsonView jsonValue);
38 AWS_MIGRATIONHUBSTRATEGYRECOMMENDATIONS_API RecommendationSet& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_MIGRATIONHUBSTRATEGYRECOMMENDATIONS_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Strategy& GetStrategy() const{ return m_strategy; }
47 inline bool StrategyHasBeenSet() const { return m_strategyHasBeenSet; }
48 inline void SetStrategy(const Strategy& value) { m_strategyHasBeenSet = true; m_strategy = value; }
49 inline void SetStrategy(Strategy&& value) { m_strategyHasBeenSet = true; m_strategy = std::move(value); }
50 inline RecommendationSet& WithStrategy(const Strategy& value) { SetStrategy(value); return *this;}
51 inline RecommendationSet& WithStrategy(Strategy&& value) { SetStrategy(std::move(value)); return *this;}
53
55
58 inline const TargetDestination& GetTargetDestination() const{ return m_targetDestination; }
59 inline bool TargetDestinationHasBeenSet() const { return m_targetDestinationHasBeenSet; }
60 inline void SetTargetDestination(const TargetDestination& value) { m_targetDestinationHasBeenSet = true; m_targetDestination = value; }
61 inline void SetTargetDestination(TargetDestination&& value) { m_targetDestinationHasBeenSet = true; m_targetDestination = std::move(value); }
63 inline RecommendationSet& WithTargetDestination(TargetDestination&& value) { SetTargetDestination(std::move(value)); return *this;}
65
67
70 inline const TransformationTool& GetTransformationTool() const{ return m_transformationTool; }
71 inline bool TransformationToolHasBeenSet() const { return m_transformationToolHasBeenSet; }
72 inline void SetTransformationTool(const TransformationTool& value) { m_transformationToolHasBeenSet = true; m_transformationTool = value; }
73 inline void SetTransformationTool(TransformationTool&& value) { m_transformationToolHasBeenSet = true; m_transformationTool = std::move(value); }
75 inline RecommendationSet& WithTransformationTool(TransformationTool&& value) { SetTransformationTool(std::move(value)); return *this;}
77 private:
78
79 Strategy m_strategy;
80 bool m_strategyHasBeenSet = false;
81
82 TargetDestination m_targetDestination;
83 bool m_targetDestinationHasBeenSet = false;
84
85 TransformationTool m_transformationTool;
86 bool m_transformationToolHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace MigrationHubStrategyRecommendations
91} // namespace Aws
AWS_MIGRATIONHUBSTRATEGYRECOMMENDATIONS_API RecommendationSet(Aws::Utils::Json::JsonView jsonValue)
AWS_MIGRATIONHUBSTRATEGYRECOMMENDATIONS_API RecommendationSet()
RecommendationSet & WithTransformationTool(TransformationTool &&value)
RecommendationSet & WithTargetDestination(TargetDestination &&value)
AWS_MIGRATIONHUBSTRATEGYRECOMMENDATIONS_API Aws::Utils::Json::JsonValue Jsonize() const
RecommendationSet & WithTransformationTool(const TransformationTool &value)
AWS_MIGRATIONHUBSTRATEGYRECOMMENDATIONS_API RecommendationSet & operator=(Aws::Utils::Json::JsonView jsonValue)
RecommendationSet & WithTargetDestination(const TargetDestination &value)
Aws::Utils::Json::JsonValue JsonValue