AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
Spacing.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_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 QuickSight
22{
23namespace Model
24{
25
32 class Spacing
33 {
34 public:
35 AWS_QUICKSIGHT_API Spacing();
36 AWS_QUICKSIGHT_API Spacing(Aws::Utils::Json::JsonView jsonValue);
37 AWS_QUICKSIGHT_API Spacing& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetTop() const{ return m_top; }
46 inline bool TopHasBeenSet() const { return m_topHasBeenSet; }
47 inline void SetTop(const Aws::String& value) { m_topHasBeenSet = true; m_top = value; }
48 inline void SetTop(Aws::String&& value) { m_topHasBeenSet = true; m_top = std::move(value); }
49 inline void SetTop(const char* value) { m_topHasBeenSet = true; m_top.assign(value); }
50 inline Spacing& WithTop(const Aws::String& value) { SetTop(value); return *this;}
51 inline Spacing& WithTop(Aws::String&& value) { SetTop(std::move(value)); return *this;}
52 inline Spacing& WithTop(const char* value) { SetTop(value); return *this;}
54
56
59 inline const Aws::String& GetBottom() const{ return m_bottom; }
60 inline bool BottomHasBeenSet() const { return m_bottomHasBeenSet; }
61 inline void SetBottom(const Aws::String& value) { m_bottomHasBeenSet = true; m_bottom = value; }
62 inline void SetBottom(Aws::String&& value) { m_bottomHasBeenSet = true; m_bottom = std::move(value); }
63 inline void SetBottom(const char* value) { m_bottomHasBeenSet = true; m_bottom.assign(value); }
64 inline Spacing& WithBottom(const Aws::String& value) { SetBottom(value); return *this;}
65 inline Spacing& WithBottom(Aws::String&& value) { SetBottom(std::move(value)); return *this;}
66 inline Spacing& WithBottom(const char* value) { SetBottom(value); return *this;}
68
70
73 inline const Aws::String& GetLeft() const{ return m_left; }
74 inline bool LeftHasBeenSet() const { return m_leftHasBeenSet; }
75 inline void SetLeft(const Aws::String& value) { m_leftHasBeenSet = true; m_left = value; }
76 inline void SetLeft(Aws::String&& value) { m_leftHasBeenSet = true; m_left = std::move(value); }
77 inline void SetLeft(const char* value) { m_leftHasBeenSet = true; m_left.assign(value); }
78 inline Spacing& WithLeft(const Aws::String& value) { SetLeft(value); return *this;}
79 inline Spacing& WithLeft(Aws::String&& value) { SetLeft(std::move(value)); return *this;}
80 inline Spacing& WithLeft(const char* value) { SetLeft(value); return *this;}
82
84
87 inline const Aws::String& GetRight() const{ return m_right; }
88 inline bool RightHasBeenSet() const { return m_rightHasBeenSet; }
89 inline void SetRight(const Aws::String& value) { m_rightHasBeenSet = true; m_right = value; }
90 inline void SetRight(Aws::String&& value) { m_rightHasBeenSet = true; m_right = std::move(value); }
91 inline void SetRight(const char* value) { m_rightHasBeenSet = true; m_right.assign(value); }
92 inline Spacing& WithRight(const Aws::String& value) { SetRight(value); return *this;}
93 inline Spacing& WithRight(Aws::String&& value) { SetRight(std::move(value)); return *this;}
94 inline Spacing& WithRight(const char* value) { SetRight(value); return *this;}
96 private:
97
98 Aws::String m_top;
99 bool m_topHasBeenSet = false;
100
101 Aws::String m_bottom;
102 bool m_bottomHasBeenSet = false;
103
104 Aws::String m_left;
105 bool m_leftHasBeenSet = false;
106
107 Aws::String m_right;
108 bool m_rightHasBeenSet = false;
109 };
110
111} // namespace Model
112} // namespace QuickSight
113} // namespace Aws
Spacing & WithTop(Aws::String &&value)
Definition Spacing.h:51
Spacing & WithLeft(Aws::String &&value)
Definition Spacing.h:79
Spacing & WithTop(const char *value)
Definition Spacing.h:52
AWS_QUICKSIGHT_API Spacing & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetLeft() const
Definition Spacing.h:73
void SetBottom(Aws::String &&value)
Definition Spacing.h:62
void SetLeft(const char *value)
Definition Spacing.h:77
Spacing & WithTop(const Aws::String &value)
Definition Spacing.h:50
void SetBottom(const Aws::String &value)
Definition Spacing.h:61
void SetTop(const Aws::String &value)
Definition Spacing.h:47
Spacing & WithLeft(const char *value)
Definition Spacing.h:80
AWS_QUICKSIGHT_API Spacing(Aws::Utils::Json::JsonView jsonValue)
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_QUICKSIGHT_API Spacing()
Spacing & WithLeft(const Aws::String &value)
Definition Spacing.h:78
void SetRight(Aws::String &&value)
Definition Spacing.h:90
void SetLeft(Aws::String &&value)
Definition Spacing.h:76
Spacing & WithRight(const char *value)
Definition Spacing.h:94
Spacing & WithRight(Aws::String &&value)
Definition Spacing.h:93
void SetTop(const char *value)
Definition Spacing.h:49
Spacing & WithBottom(const Aws::String &value)
Definition Spacing.h:64
void SetLeft(const Aws::String &value)
Definition Spacing.h:75
const Aws::String & GetRight() const
Definition Spacing.h:87
Spacing & WithBottom(const char *value)
Definition Spacing.h:66
Spacing & WithBottom(Aws::String &&value)
Definition Spacing.h:65
Spacing & WithRight(const Aws::String &value)
Definition Spacing.h:92
void SetRight(const Aws::String &value)
Definition Spacing.h:89
void SetTop(Aws::String &&value)
Definition Spacing.h:48
void SetBottom(const char *value)
Definition Spacing.h:63
void SetRight(const char *value)
Definition Spacing.h:91
const Aws::String & GetTop() const
Definition Spacing.h:45
const Aws::String & GetBottom() const
Definition Spacing.h:59
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue