AWS SDK for C++

AWS SDK for C++ Version 1.11.754

Loading...
Searching...
No Matches
HeatMapAggregatedFieldWells.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 HeatMapAggregatedFieldWells() = default;
34 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
40 inline const Aws::Vector<DimensionField>& GetRows() const { return m_rows; }
41 inline bool RowsHasBeenSet() const { return m_rowsHasBeenSet; }
42 template <typename RowsT = Aws::Vector<DimensionField>>
43 void SetRows(RowsT&& value) {
44 m_rowsHasBeenSet = true;
45 m_rows = std::forward<RowsT>(value);
46 }
47 template <typename RowsT = Aws::Vector<DimensionField>>
49 SetRows(std::forward<RowsT>(value));
50 return *this;
51 }
52 template <typename RowsT = DimensionField>
54 m_rowsHasBeenSet = true;
55 m_rows.emplace_back(std::forward<RowsT>(value));
56 return *this;
57 }
59
61
64 inline const Aws::Vector<DimensionField>& GetColumns() const { return m_columns; }
65 inline bool ColumnsHasBeenSet() const { return m_columnsHasBeenSet; }
66 template <typename ColumnsT = Aws::Vector<DimensionField>>
67 void SetColumns(ColumnsT&& value) {
68 m_columnsHasBeenSet = true;
69 m_columns = std::forward<ColumnsT>(value);
70 }
71 template <typename ColumnsT = Aws::Vector<DimensionField>>
73 SetColumns(std::forward<ColumnsT>(value));
74 return *this;
75 }
76 template <typename ColumnsT = DimensionField>
78 m_columnsHasBeenSet = true;
79 m_columns.emplace_back(std::forward<ColumnsT>(value));
80 return *this;
81 }
83
85
88 inline const Aws::Vector<MeasureField>& GetValues() const { return m_values; }
89 inline bool ValuesHasBeenSet() const { return m_valuesHasBeenSet; }
90 template <typename ValuesT = Aws::Vector<MeasureField>>
91 void SetValues(ValuesT&& value) {
92 m_valuesHasBeenSet = true;
93 m_values = std::forward<ValuesT>(value);
94 }
95 template <typename ValuesT = Aws::Vector<MeasureField>>
97 SetValues(std::forward<ValuesT>(value));
98 return *this;
99 }
100 template <typename ValuesT = MeasureField>
102 m_valuesHasBeenSet = true;
103 m_values.emplace_back(std::forward<ValuesT>(value));
104 return *this;
105 }
107 private:
109
111
113 bool m_rowsHasBeenSet = false;
114 bool m_columnsHasBeenSet = false;
115 bool m_valuesHasBeenSet = false;
116};
117
118} // namespace Model
119} // namespace QuickSight
120} // namespace Aws
HeatMapAggregatedFieldWells & WithRows(RowsT &&value)
AWS_QUICKSIGHT_API HeatMapAggregatedFieldWells(Aws::Utils::Json::JsonView jsonValue)
HeatMapAggregatedFieldWells & AddColumns(ColumnsT &&value)
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
HeatMapAggregatedFieldWells & WithColumns(ColumnsT &&value)
AWS_QUICKSIGHT_API HeatMapAggregatedFieldWells()=default
const Aws::Vector< DimensionField > & GetRows() const
HeatMapAggregatedFieldWells & AddRows(RowsT &&value)
const Aws::Vector< DimensionField > & GetColumns() const
const Aws::Vector< MeasureField > & GetValues() const
HeatMapAggregatedFieldWells & AddValues(ValuesT &&value)
HeatMapAggregatedFieldWells & WithValues(ValuesT &&value)
AWS_QUICKSIGHT_API HeatMapAggregatedFieldWells & operator=(Aws::Utils::Json::JsonView jsonValue)
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue