AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
FieldPosition.h
1
6#pragma once
7#include <aws/amplifyuibuilder/AmplifyUIBuilder_EXPORTS.h>
8#include <aws/amplifyuibuilder/model/FixedPosition.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 AmplifyUIBuilder
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_AMPLIFYUIBUILDER_API FieldPosition();
36 AWS_AMPLIFYUIBUILDER_API FieldPosition(Aws::Utils::Json::JsonView jsonValue);
37 AWS_AMPLIFYUIBUILDER_API FieldPosition& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_AMPLIFYUIBUILDER_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
46 inline const FixedPosition& GetFixed() const{ return m_fixed; }
47 inline bool FixedHasBeenSet() const { return m_fixedHasBeenSet; }
48 inline void SetFixed(const FixedPosition& value) { m_fixedHasBeenSet = true; m_fixed = value; }
49 inline void SetFixed(FixedPosition&& value) { m_fixedHasBeenSet = true; m_fixed = std::move(value); }
50 inline FieldPosition& WithFixed(const FixedPosition& value) { SetFixed(value); return *this;}
51 inline FieldPosition& WithFixed(FixedPosition&& value) { SetFixed(std::move(value)); return *this;}
53
55
58 inline const Aws::String& GetRightOf() const{ return m_rightOf; }
59 inline bool RightOfHasBeenSet() const { return m_rightOfHasBeenSet; }
60 inline void SetRightOf(const Aws::String& value) { m_rightOfHasBeenSet = true; m_rightOf = value; }
61 inline void SetRightOf(Aws::String&& value) { m_rightOfHasBeenSet = true; m_rightOf = std::move(value); }
62 inline void SetRightOf(const char* value) { m_rightOfHasBeenSet = true; m_rightOf.assign(value); }
63 inline FieldPosition& WithRightOf(const Aws::String& value) { SetRightOf(value); return *this;}
64 inline FieldPosition& WithRightOf(Aws::String&& value) { SetRightOf(std::move(value)); return *this;}
65 inline FieldPosition& WithRightOf(const char* value) { SetRightOf(value); return *this;}
67
69
72 inline const Aws::String& GetBelow() const{ return m_below; }
73 inline bool BelowHasBeenSet() const { return m_belowHasBeenSet; }
74 inline void SetBelow(const Aws::String& value) { m_belowHasBeenSet = true; m_below = value; }
75 inline void SetBelow(Aws::String&& value) { m_belowHasBeenSet = true; m_below = std::move(value); }
76 inline void SetBelow(const char* value) { m_belowHasBeenSet = true; m_below.assign(value); }
77 inline FieldPosition& WithBelow(const Aws::String& value) { SetBelow(value); return *this;}
78 inline FieldPosition& WithBelow(Aws::String&& value) { SetBelow(std::move(value)); return *this;}
79 inline FieldPosition& WithBelow(const char* value) { SetBelow(value); return *this;}
81 private:
82
83 FixedPosition m_fixed;
84 bool m_fixedHasBeenSet = false;
85
86 Aws::String m_rightOf;
87 bool m_rightOfHasBeenSet = false;
88
89 Aws::String m_below;
90 bool m_belowHasBeenSet = false;
91 };
92
93} // namespace Model
94} // namespace AmplifyUIBuilder
95} // namespace Aws
AWS_AMPLIFYUIBUILDER_API FieldPosition(Aws::Utils::Json::JsonView jsonValue)
AWS_AMPLIFYUIBUILDER_API FieldPosition & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetBelow(const Aws::String &value)
const Aws::String & GetRightOf() const
AWS_AMPLIFYUIBUILDER_API FieldPosition()
void SetRightOf(const Aws::String &value)
FieldPosition & WithBelow(Aws::String &&value)
FieldPosition & WithBelow(const char *value)
AWS_AMPLIFYUIBUILDER_API Aws::Utils::Json::JsonValue Jsonize() const
FieldPosition & WithRightOf(const Aws::String &value)
const FixedPosition & GetFixed() const
FieldPosition & WithRightOf(const char *value)
FieldPosition & WithFixed(FixedPosition &&value)
FieldPosition & WithFixed(const FixedPosition &value)
FieldPosition & WithBelow(const Aws::String &value)
void SetFixed(const FixedPosition &value)
FieldPosition & WithRightOf(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue