AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
GeospatialMapConfiguration.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_EXPORTS.h>
8#include <aws/quicksight/model/GeospatialMapFieldWells.h>
9#include <aws/quicksight/model/LegendOptions.h>
10#include <aws/quicksight/model/TooltipOptions.h>
11#include <aws/quicksight/model/GeospatialWindowOptions.h>
12#include <aws/quicksight/model/GeospatialMapStyleOptions.h>
13#include <aws/quicksight/model/GeospatialPointStyleOptions.h>
14#include <aws/quicksight/model/VisualPalette.h>
15#include <aws/quicksight/model/VisualInteractionOptions.h>
16#include <utility>
17
18namespace Aws
19{
20namespace Utils
21{
22namespace Json
23{
24 class JsonValue;
25 class JsonView;
26} // namespace Json
27} // namespace Utils
28namespace QuickSight
29{
30namespace Model
31{
32
40 {
41 public:
42 AWS_QUICKSIGHT_API GeospatialMapConfiguration() = default;
45 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
46
47
49
52 inline const GeospatialMapFieldWells& GetFieldWells() const { return m_fieldWells; }
53 inline bool FieldWellsHasBeenSet() const { return m_fieldWellsHasBeenSet; }
54 template<typename FieldWellsT = GeospatialMapFieldWells>
55 void SetFieldWells(FieldWellsT&& value) { m_fieldWellsHasBeenSet = true; m_fieldWells = std::forward<FieldWellsT>(value); }
56 template<typename FieldWellsT = GeospatialMapFieldWells>
57 GeospatialMapConfiguration& WithFieldWells(FieldWellsT&& value) { SetFieldWells(std::forward<FieldWellsT>(value)); return *this;}
59
61
64 inline const LegendOptions& GetLegend() const { return m_legend; }
65 inline bool LegendHasBeenSet() const { return m_legendHasBeenSet; }
66 template<typename LegendT = LegendOptions>
67 void SetLegend(LegendT&& value) { m_legendHasBeenSet = true; m_legend = std::forward<LegendT>(value); }
68 template<typename LegendT = LegendOptions>
69 GeospatialMapConfiguration& WithLegend(LegendT&& value) { SetLegend(std::forward<LegendT>(value)); return *this;}
71
73
76 inline const TooltipOptions& GetTooltip() const { return m_tooltip; }
77 inline bool TooltipHasBeenSet() const { return m_tooltipHasBeenSet; }
78 template<typename TooltipT = TooltipOptions>
79 void SetTooltip(TooltipT&& value) { m_tooltipHasBeenSet = true; m_tooltip = std::forward<TooltipT>(value); }
80 template<typename TooltipT = TooltipOptions>
81 GeospatialMapConfiguration& WithTooltip(TooltipT&& value) { SetTooltip(std::forward<TooltipT>(value)); return *this;}
83
85
88 inline const GeospatialWindowOptions& GetWindowOptions() const { return m_windowOptions; }
89 inline bool WindowOptionsHasBeenSet() const { return m_windowOptionsHasBeenSet; }
90 template<typename WindowOptionsT = GeospatialWindowOptions>
91 void SetWindowOptions(WindowOptionsT&& value) { m_windowOptionsHasBeenSet = true; m_windowOptions = std::forward<WindowOptionsT>(value); }
92 template<typename WindowOptionsT = GeospatialWindowOptions>
93 GeospatialMapConfiguration& WithWindowOptions(WindowOptionsT&& value) { SetWindowOptions(std::forward<WindowOptionsT>(value)); return *this;}
95
97
100 inline const GeospatialMapStyleOptions& GetMapStyleOptions() const { return m_mapStyleOptions; }
101 inline bool MapStyleOptionsHasBeenSet() const { return m_mapStyleOptionsHasBeenSet; }
102 template<typename MapStyleOptionsT = GeospatialMapStyleOptions>
103 void SetMapStyleOptions(MapStyleOptionsT&& value) { m_mapStyleOptionsHasBeenSet = true; m_mapStyleOptions = std::forward<MapStyleOptionsT>(value); }
104 template<typename MapStyleOptionsT = GeospatialMapStyleOptions>
105 GeospatialMapConfiguration& WithMapStyleOptions(MapStyleOptionsT&& value) { SetMapStyleOptions(std::forward<MapStyleOptionsT>(value)); return *this;}
107
109
112 inline const GeospatialPointStyleOptions& GetPointStyleOptions() const { return m_pointStyleOptions; }
113 inline bool PointStyleOptionsHasBeenSet() const { return m_pointStyleOptionsHasBeenSet; }
114 template<typename PointStyleOptionsT = GeospatialPointStyleOptions>
115 void SetPointStyleOptions(PointStyleOptionsT&& value) { m_pointStyleOptionsHasBeenSet = true; m_pointStyleOptions = std::forward<PointStyleOptionsT>(value); }
116 template<typename PointStyleOptionsT = GeospatialPointStyleOptions>
117 GeospatialMapConfiguration& WithPointStyleOptions(PointStyleOptionsT&& value) { SetPointStyleOptions(std::forward<PointStyleOptionsT>(value)); return *this;}
119
121
122 inline const VisualPalette& GetVisualPalette() const { return m_visualPalette; }
123 inline bool VisualPaletteHasBeenSet() const { return m_visualPaletteHasBeenSet; }
124 template<typename VisualPaletteT = VisualPalette>
125 void SetVisualPalette(VisualPaletteT&& value) { m_visualPaletteHasBeenSet = true; m_visualPalette = std::forward<VisualPaletteT>(value); }
126 template<typename VisualPaletteT = VisualPalette>
127 GeospatialMapConfiguration& WithVisualPalette(VisualPaletteT&& value) { SetVisualPalette(std::forward<VisualPaletteT>(value)); return *this;}
129
131
134 inline const VisualInteractionOptions& GetInteractions() const { return m_interactions; }
135 inline bool InteractionsHasBeenSet() const { return m_interactionsHasBeenSet; }
136 template<typename InteractionsT = VisualInteractionOptions>
137 void SetInteractions(InteractionsT&& value) { m_interactionsHasBeenSet = true; m_interactions = std::forward<InteractionsT>(value); }
138 template<typename InteractionsT = VisualInteractionOptions>
139 GeospatialMapConfiguration& WithInteractions(InteractionsT&& value) { SetInteractions(std::forward<InteractionsT>(value)); return *this;}
141 private:
142
143 GeospatialMapFieldWells m_fieldWells;
144 bool m_fieldWellsHasBeenSet = false;
145
146 LegendOptions m_legend;
147 bool m_legendHasBeenSet = false;
148
149 TooltipOptions m_tooltip;
150 bool m_tooltipHasBeenSet = false;
151
152 GeospatialWindowOptions m_windowOptions;
153 bool m_windowOptionsHasBeenSet = false;
154
155 GeospatialMapStyleOptions m_mapStyleOptions;
156 bool m_mapStyleOptionsHasBeenSet = false;
157
158 GeospatialPointStyleOptions m_pointStyleOptions;
159 bool m_pointStyleOptionsHasBeenSet = false;
160
161 VisualPalette m_visualPalette;
162 bool m_visualPaletteHasBeenSet = false;
163
164 VisualInteractionOptions m_interactions;
165 bool m_interactionsHasBeenSet = false;
166 };
167
168} // namespace Model
169} // namespace QuickSight
170} // namespace Aws
GeospatialMapConfiguration & WithWindowOptions(WindowOptionsT &&value)
GeospatialMapConfiguration & WithPointStyleOptions(PointStyleOptionsT &&value)
GeospatialMapConfiguration & WithInteractions(InteractionsT &&value)
GeospatialMapConfiguration & WithTooltip(TooltipT &&value)
GeospatialMapConfiguration & WithMapStyleOptions(MapStyleOptionsT &&value)
const GeospatialWindowOptions & GetWindowOptions() const
AWS_QUICKSIGHT_API GeospatialMapConfiguration(Aws::Utils::Json::JsonView jsonValue)
AWS_QUICKSIGHT_API GeospatialMapConfiguration()=default
GeospatialMapConfiguration & WithLegend(LegendT &&value)
const GeospatialMapFieldWells & GetFieldWells() const
const GeospatialMapStyleOptions & GetMapStyleOptions() const
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
const VisualInteractionOptions & GetInteractions() const
const GeospatialPointStyleOptions & GetPointStyleOptions() const
GeospatialMapConfiguration & WithVisualPalette(VisualPaletteT &&value)
GeospatialMapConfiguration & WithFieldWells(FieldWellsT &&value)
AWS_QUICKSIGHT_API GeospatialMapConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
Aws::Utils::Json::JsonValue JsonValue