AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
SavingsPlanOfferingProperty.h
1
6#pragma once
7#include <aws/savingsplans/SavingsPlans_EXPORTS.h>
8#include <aws/savingsplans/model/SavingsPlanOfferingPropertyKey.h>
9#include <aws/core/utils/memory/stl/AWSString.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 SavingsPlans
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_SAVINGSPLANS_API SavingsPlanOfferingProperty();
39 AWS_SAVINGSPLANS_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const SavingsPlanOfferingPropertyKey& GetName() const{ return m_name; }
47 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
48 inline void SetName(const SavingsPlanOfferingPropertyKey& value) { m_nameHasBeenSet = true; m_name = value; }
49 inline void SetName(SavingsPlanOfferingPropertyKey&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
50 inline SavingsPlanOfferingProperty& WithName(const SavingsPlanOfferingPropertyKey& value) { SetName(value); return *this;}
51 inline SavingsPlanOfferingProperty& WithName(SavingsPlanOfferingPropertyKey&& value) { SetName(std::move(value)); return *this;}
53
55
58 inline const Aws::String& GetValue() const{ return m_value; }
59 inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
60 inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; }
61 inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); }
62 inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); }
63 inline SavingsPlanOfferingProperty& WithValue(const Aws::String& value) { SetValue(value); return *this;}
64 inline SavingsPlanOfferingProperty& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;}
65 inline SavingsPlanOfferingProperty& WithValue(const char* value) { SetValue(value); return *this;}
67 private:
68
70 bool m_nameHasBeenSet = false;
71
72 Aws::String m_value;
73 bool m_valueHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace SavingsPlans
78} // namespace Aws
AWS_SAVINGSPLANS_API SavingsPlanOfferingProperty & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetName(SavingsPlanOfferingPropertyKey &&value)
AWS_SAVINGSPLANS_API SavingsPlanOfferingProperty(Aws::Utils::Json::JsonView jsonValue)
SavingsPlanOfferingProperty & WithName(const SavingsPlanOfferingPropertyKey &value)
const SavingsPlanOfferingPropertyKey & GetName() const
SavingsPlanOfferingProperty & WithValue(const char *value)
void SetName(const SavingsPlanOfferingPropertyKey &value)
AWS_SAVINGSPLANS_API Aws::Utils::Json::JsonValue Jsonize() const
SavingsPlanOfferingProperty & WithValue(const Aws::String &value)
SavingsPlanOfferingProperty & WithName(SavingsPlanOfferingPropertyKey &&value)
SavingsPlanOfferingProperty & WithValue(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue