AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
RdsDbInstance.h
1
6#pragma once
7#include <aws/cost-optimization-hub/CostOptimizationHub_EXPORTS.h>
8#include <aws/cost-optimization-hub/model/RdsDbInstanceConfiguration.h>
9#include <aws/cost-optimization-hub/model/ResourceCostCalculation.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 CostOptimizationHub
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_COSTOPTIMIZATIONHUB_API RdsDbInstance() = default;
37 AWS_COSTOPTIMIZATIONHUB_API RdsDbInstance(Aws::Utils::Json::JsonView jsonValue);
38 AWS_COSTOPTIMIZATIONHUB_API RdsDbInstance& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_COSTOPTIMIZATIONHUB_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const RdsDbInstanceConfiguration& GetConfiguration() const { return m_configuration; }
47 inline bool ConfigurationHasBeenSet() const { return m_configurationHasBeenSet; }
48 template<typename ConfigurationT = RdsDbInstanceConfiguration>
49 void SetConfiguration(ConfigurationT&& value) { m_configurationHasBeenSet = true; m_configuration = std::forward<ConfigurationT>(value); }
50 template<typename ConfigurationT = RdsDbInstanceConfiguration>
51 RdsDbInstance& WithConfiguration(ConfigurationT&& value) { SetConfiguration(std::forward<ConfigurationT>(value)); return *this;}
53
55
56 inline const ResourceCostCalculation& GetCostCalculation() const { return m_costCalculation; }
57 inline bool CostCalculationHasBeenSet() const { return m_costCalculationHasBeenSet; }
58 template<typename CostCalculationT = ResourceCostCalculation>
59 void SetCostCalculation(CostCalculationT&& value) { m_costCalculationHasBeenSet = true; m_costCalculation = std::forward<CostCalculationT>(value); }
60 template<typename CostCalculationT = ResourceCostCalculation>
61 RdsDbInstance& WithCostCalculation(CostCalculationT&& value) { SetCostCalculation(std::forward<CostCalculationT>(value)); return *this;}
63 private:
64
65 RdsDbInstanceConfiguration m_configuration;
66 bool m_configurationHasBeenSet = false;
67
68 ResourceCostCalculation m_costCalculation;
69 bool m_costCalculationHasBeenSet = false;
70 };
71
72} // namespace Model
73} // namespace CostOptimizationHub
74} // namespace Aws
RdsDbInstance & WithConfiguration(ConfigurationT &&value)
AWS_COSTOPTIMIZATIONHUB_API RdsDbInstance(Aws::Utils::Json::JsonView jsonValue)
AWS_COSTOPTIMIZATIONHUB_API Aws::Utils::Json::JsonValue Jsonize() const
const ResourceCostCalculation & GetCostCalculation() const
RdsDbInstance & WithCostCalculation(CostCalculationT &&value)
AWS_COSTOPTIMIZATIONHUB_API RdsDbInstance & operator=(Aws::Utils::Json::JsonView jsonValue)
const RdsDbInstanceConfiguration & GetConfiguration() const
AWS_COSTOPTIMIZATIONHUB_API RdsDbInstance()=default
void SetConfiguration(ConfigurationT &&value)
void SetCostCalculation(CostCalculationT &&value)
Aws::Utils::Json::JsonValue JsonValue