AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
RdsRecommendation.h
1
6#pragma once
7#include <aws/dms/DatabaseMigrationService_EXPORTS.h>
8#include <aws/dms/model/RdsRequirements.h>
9#include <aws/dms/model/RdsConfiguration.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace DatabaseMigrationService
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_DATABASEMIGRATIONSERVICE_API RdsRecommendation();
37 AWS_DATABASEMIGRATIONSERVICE_API RdsRecommendation(Aws::Utils::Json::JsonView jsonValue);
38 AWS_DATABASEMIGRATIONSERVICE_API RdsRecommendation& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_DATABASEMIGRATIONSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const RdsRequirements& GetRequirementsToTarget() const{ return m_requirementsToTarget; }
48 inline bool RequirementsToTargetHasBeenSet() const { return m_requirementsToTargetHasBeenSet; }
49 inline void SetRequirementsToTarget(const RdsRequirements& value) { m_requirementsToTargetHasBeenSet = true; m_requirementsToTarget = value; }
50 inline void SetRequirementsToTarget(RdsRequirements&& value) { m_requirementsToTargetHasBeenSet = true; m_requirementsToTarget = std::move(value); }
52 inline RdsRecommendation& WithRequirementsToTarget(RdsRequirements&& value) { SetRequirementsToTarget(std::move(value)); return *this;}
54
56
60 inline const RdsConfiguration& GetTargetConfiguration() const{ return m_targetConfiguration; }
61 inline bool TargetConfigurationHasBeenSet() const { return m_targetConfigurationHasBeenSet; }
62 inline void SetTargetConfiguration(const RdsConfiguration& value) { m_targetConfigurationHasBeenSet = true; m_targetConfiguration = value; }
63 inline void SetTargetConfiguration(RdsConfiguration&& value) { m_targetConfigurationHasBeenSet = true; m_targetConfiguration = std::move(value); }
65 inline RdsRecommendation& WithTargetConfiguration(RdsConfiguration&& value) { SetTargetConfiguration(std::move(value)); return *this;}
67 private:
68
69 RdsRequirements m_requirementsToTarget;
70 bool m_requirementsToTargetHasBeenSet = false;
71
72 RdsConfiguration m_targetConfiguration;
73 bool m_targetConfigurationHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace DatabaseMigrationService
78} // namespace Aws
RdsRecommendation & WithTargetConfiguration(RdsConfiguration &&value)
AWS_DATABASEMIGRATIONSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const
RdsRecommendation & WithRequirementsToTarget(const RdsRequirements &value)
AWS_DATABASEMIGRATIONSERVICE_API RdsRecommendation(Aws::Utils::Json::JsonView jsonValue)
RdsRecommendation & WithTargetConfiguration(const RdsConfiguration &value)
AWS_DATABASEMIGRATIONSERVICE_API RdsRecommendation()
RdsRecommendation & WithRequirementsToTarget(RdsRequirements &&value)
void SetTargetConfiguration(const RdsConfiguration &value)
void SetRequirementsToTarget(const RdsRequirements &value)
AWS_DATABASEMIGRATIONSERVICE_API RdsRecommendation & operator=(Aws::Utils::Json::JsonView jsonValue)
Aws::Utils::Json::JsonValue JsonValue