AWS SDK for C++

AWS SDK for C++ Version 1.11.750

Loading...
Searching...
No Matches
ScatterPlotUnaggregatedFieldWells.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSVector.h>
8#include <aws/quicksight/QuickSight_EXPORTS.h>
9#include <aws/quicksight/model/DimensionField.h>
10#include <aws/quicksight/model/MeasureField.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Utils {
16namespace Json {
17class JsonValue;
18class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace QuickSight {
22namespace Model {
23
30 public:
31 AWS_QUICKSIGHT_API ScatterPlotUnaggregatedFieldWells() = default;
34 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
41 inline const Aws::Vector<DimensionField>& GetXAxis() const { return m_xAxis; }
42 inline bool XAxisHasBeenSet() const { return m_xAxisHasBeenSet; }
43 template <typename XAxisT = Aws::Vector<DimensionField>>
44 void SetXAxis(XAxisT&& value) {
45 m_xAxisHasBeenSet = true;
46 m_xAxis = std::forward<XAxisT>(value);
47 }
48 template <typename XAxisT = Aws::Vector<DimensionField>>
50 SetXAxis(std::forward<XAxisT>(value));
51 return *this;
52 }
53 template <typename XAxisT = DimensionField>
55 m_xAxisHasBeenSet = true;
56 m_xAxis.emplace_back(std::forward<XAxisT>(value));
57 return *this;
58 }
60
62
66 inline const Aws::Vector<DimensionField>& GetYAxis() const { return m_yAxis; }
67 inline bool YAxisHasBeenSet() const { return m_yAxisHasBeenSet; }
68 template <typename YAxisT = Aws::Vector<DimensionField>>
69 void SetYAxis(YAxisT&& value) {
70 m_yAxisHasBeenSet = true;
71 m_yAxis = std::forward<YAxisT>(value);
72 }
73 template <typename YAxisT = Aws::Vector<DimensionField>>
75 SetYAxis(std::forward<YAxisT>(value));
76 return *this;
77 }
78 template <typename YAxisT = DimensionField>
80 m_yAxisHasBeenSet = true;
81 m_yAxis.emplace_back(std::forward<YAxisT>(value));
82 return *this;
83 }
85
87
90 inline const Aws::Vector<MeasureField>& GetSize() const { return m_size; }
91 inline bool SizeHasBeenSet() const { return m_sizeHasBeenSet; }
92 template <typename SizeT = Aws::Vector<MeasureField>>
93 void SetSize(SizeT&& value) {
94 m_sizeHasBeenSet = true;
95 m_size = std::forward<SizeT>(value);
96 }
97 template <typename SizeT = Aws::Vector<MeasureField>>
99 SetSize(std::forward<SizeT>(value));
100 return *this;
101 }
102 template <typename SizeT = MeasureField>
104 m_sizeHasBeenSet = true;
105 m_size.emplace_back(std::forward<SizeT>(value));
106 return *this;
107 }
109
111
114 inline const Aws::Vector<DimensionField>& GetCategory() const { return m_category; }
115 inline bool CategoryHasBeenSet() const { return m_categoryHasBeenSet; }
116 template <typename CategoryT = Aws::Vector<DimensionField>>
117 void SetCategory(CategoryT&& value) {
118 m_categoryHasBeenSet = true;
119 m_category = std::forward<CategoryT>(value);
120 }
121 template <typename CategoryT = Aws::Vector<DimensionField>>
123 SetCategory(std::forward<CategoryT>(value));
124 return *this;
125 }
126 template <typename CategoryT = DimensionField>
128 m_categoryHasBeenSet = true;
129 m_category.emplace_back(std::forward<CategoryT>(value));
130 return *this;
131 }
133
135
138 inline const Aws::Vector<DimensionField>& GetLabel() const { return m_label; }
139 inline bool LabelHasBeenSet() const { return m_labelHasBeenSet; }
140 template <typename LabelT = Aws::Vector<DimensionField>>
141 void SetLabel(LabelT&& value) {
142 m_labelHasBeenSet = true;
143 m_label = std::forward<LabelT>(value);
144 }
145 template <typename LabelT = Aws::Vector<DimensionField>>
147 SetLabel(std::forward<LabelT>(value));
148 return *this;
149 }
150 template <typename LabelT = DimensionField>
152 m_labelHasBeenSet = true;
153 m_label.emplace_back(std::forward<LabelT>(value));
154 return *this;
155 }
157 private:
159
161
163
165
167 bool m_xAxisHasBeenSet = false;
168 bool m_yAxisHasBeenSet = false;
169 bool m_sizeHasBeenSet = false;
170 bool m_categoryHasBeenSet = false;
171 bool m_labelHasBeenSet = false;
172};
173
174} // namespace Model
175} // namespace QuickSight
176} // namespace Aws
ScatterPlotUnaggregatedFieldWells & WithCategory(CategoryT &&value)
ScatterPlotUnaggregatedFieldWells & WithXAxis(XAxisT &&value)
ScatterPlotUnaggregatedFieldWells & AddCategory(CategoryT &&value)
ScatterPlotUnaggregatedFieldWells & WithSize(SizeT &&value)
ScatterPlotUnaggregatedFieldWells & AddYAxis(YAxisT &&value)
AWS_QUICKSIGHT_API ScatterPlotUnaggregatedFieldWells()=default
ScatterPlotUnaggregatedFieldWells & AddXAxis(XAxisT &&value)
AWS_QUICKSIGHT_API ScatterPlotUnaggregatedFieldWells(Aws::Utils::Json::JsonView jsonValue)
ScatterPlotUnaggregatedFieldWells & WithYAxis(YAxisT &&value)
AWS_QUICKSIGHT_API ScatterPlotUnaggregatedFieldWells & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
ScatterPlotUnaggregatedFieldWells & WithLabel(LabelT &&value)
ScatterPlotUnaggregatedFieldWells & AddLabel(LabelT &&value)
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue