AWS SDK for C++

AWS SDK for C++ Version 1.11.811

Loading...
Searching...
No Matches
InstanceEstimatedMonthlySavings.h
1
6#pragma once
7#include <aws/compute-optimizer/ComputeOptimizer_EXPORTS.h>
8#include <aws/compute-optimizer/model/Currency.h>
9#include <aws/crt/cbor/Cbor.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Cbor {
16class CborValue;
17} // namespace Cbor
18} // namespace Utils
19namespace ComputeOptimizer {
20namespace Model {
21
31 public:
32 AWS_COMPUTEOPTIMIZER_API InstanceEstimatedMonthlySavings() = default;
33 AWS_COMPUTEOPTIMIZER_API InstanceEstimatedMonthlySavings(const std::shared_ptr<Aws::Crt::Cbor::CborDecoder>& decoder);
34 AWS_COMPUTEOPTIMIZER_API InstanceEstimatedMonthlySavings& operator=(const std::shared_ptr<Aws::Crt::Cbor::CborDecoder>& decoder);
35 AWS_COMPUTEOPTIMIZER_API void CborEncode(Aws::Crt::Cbor::CborEncoder& encoder) const;
36
38
41 inline Currency GetCurrency() const { return m_currency; }
42 inline bool CurrencyHasBeenSet() const { return m_currencyHasBeenSet; }
43 inline void SetCurrency(Currency value) {
44 m_currencyHasBeenSet = true;
45 m_currency = value;
46 }
48 SetCurrency(value);
49 return *this;
50 }
52
54
57 inline double GetValue() const { return m_value; }
58 inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
59 inline void SetValue(double value) {
60 m_valueHasBeenSet = true;
61 m_value = value;
62 }
64 SetValue(value);
65 return *this;
66 }
68 private:
69 Currency m_currency{Currency::NOT_SET};
70
71 double m_value{0.0};
72 bool m_currencyHasBeenSet = false;
73 bool m_valueHasBeenSet = false;
74};
75
76} // namespace Model
77} // namespace ComputeOptimizer
78} // namespace Aws
AWS_COMPUTEOPTIMIZER_API InstanceEstimatedMonthlySavings & operator=(const std::shared_ptr< Aws::Crt::Cbor::CborDecoder > &decoder)
AWS_COMPUTEOPTIMIZER_API void CborEncode(Aws::Crt::Cbor::CborEncoder &encoder) const
AWS_COMPUTEOPTIMIZER_API InstanceEstimatedMonthlySavings(const std::shared_ptr< Aws::Crt::Cbor::CborDecoder > &decoder)
AWS_COMPUTEOPTIMIZER_API InstanceEstimatedMonthlySavings()=default