AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
Attribute.h
1
6#pragma once
7#include <aws/billingconductor/BillingConductor_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace BillingConductor
22{
23namespace Model
24{
25
36 {
37 public:
38 AWS_BILLINGCONDUCTOR_API Attribute();
39 AWS_BILLINGCONDUCTOR_API Attribute(Aws::Utils::Json::JsonView jsonValue);
40 AWS_BILLINGCONDUCTOR_API Attribute& operator=(Aws::Utils::Json::JsonView jsonValue);
41 AWS_BILLINGCONDUCTOR_API Aws::Utils::Json::JsonValue Jsonize() const;
42
43
45
48 inline const Aws::String& GetKey() const{ return m_key; }
49 inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; }
50 inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; }
51 inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); }
52 inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); }
53 inline Attribute& WithKey(const Aws::String& value) { SetKey(value); return *this;}
54 inline Attribute& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;}
55 inline Attribute& WithKey(const char* value) { SetKey(value); return *this;}
57
59
62 inline const Aws::String& GetValue() const{ return m_value; }
63 inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
64 inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; }
65 inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); }
66 inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); }
67 inline Attribute& WithValue(const Aws::String& value) { SetValue(value); return *this;}
68 inline Attribute& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;}
69 inline Attribute& WithValue(const char* value) { SetValue(value); return *this;}
71 private:
72
73 Aws::String m_key;
74 bool m_keyHasBeenSet = false;
75
76 Aws::String m_value;
77 bool m_valueHasBeenSet = false;
78 };
79
80} // namespace Model
81} // namespace BillingConductor
82} // namespace Aws
AWS_BILLINGCONDUCTOR_API Attribute()
Attribute & WithKey(const Aws::String &value)
Definition Attribute.h:53
void SetValue(const Aws::String &value)
Definition Attribute.h:64
void SetKey(const Aws::String &value)
Definition Attribute.h:50
Attribute & WithKey(Aws::String &&value)
Definition Attribute.h:54
void SetKey(const char *value)
Definition Attribute.h:52
const Aws::String & GetValue() const
Definition Attribute.h:62
AWS_BILLINGCONDUCTOR_API Attribute(Aws::Utils::Json::JsonView jsonValue)
Attribute & WithValue(const char *value)
Definition Attribute.h:69
Attribute & WithValue(const Aws::String &value)
Definition Attribute.h:67
void SetValue(Aws::String &&value)
Definition Attribute.h:65
Attribute & WithValue(Aws::String &&value)
Definition Attribute.h:68
void SetKey(Aws::String &&value)
Definition Attribute.h:51
Attribute & WithKey(const char *value)
Definition Attribute.h:55
AWS_BILLINGCONDUCTOR_API Attribute & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetValue(const char *value)
Definition Attribute.h:66
const Aws::String & GetKey() const
Definition Attribute.h:48
AWS_BILLINGCONDUCTOR_API Aws::Utils::Json::JsonValue Jsonize() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue