AWS SDK for C++

AWS SDK for C++ Version 1.11.752

Loading...
Searching...
No Matches
LineChartSeriesSettings.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_EXPORTS.h>
8#include <aws/quicksight/model/DecalSettings.h>
9#include <aws/quicksight/model/LineChartLineStyleSettings.h>
10#include <aws/quicksight/model/LineChartMarkerStyleSettings.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
31 public:
32 AWS_QUICKSIGHT_API LineChartSeriesSettings() = default;
35 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
36
38
41 inline const LineChartLineStyleSettings& GetLineStyleSettings() const { return m_lineStyleSettings; }
42 inline bool LineStyleSettingsHasBeenSet() const { return m_lineStyleSettingsHasBeenSet; }
43 template <typename LineStyleSettingsT = LineChartLineStyleSettings>
44 void SetLineStyleSettings(LineStyleSettingsT&& value) {
45 m_lineStyleSettingsHasBeenSet = true;
46 m_lineStyleSettings = std::forward<LineStyleSettingsT>(value);
47 }
48 template <typename LineStyleSettingsT = LineChartLineStyleSettings>
49 LineChartSeriesSettings& WithLineStyleSettings(LineStyleSettingsT&& value) {
50 SetLineStyleSettings(std::forward<LineStyleSettingsT>(value));
51 return *this;
52 }
54
56
59 inline const LineChartMarkerStyleSettings& GetMarkerStyleSettings() const { return m_markerStyleSettings; }
60 inline bool MarkerStyleSettingsHasBeenSet() const { return m_markerStyleSettingsHasBeenSet; }
61 template <typename MarkerStyleSettingsT = LineChartMarkerStyleSettings>
62 void SetMarkerStyleSettings(MarkerStyleSettingsT&& value) {
63 m_markerStyleSettingsHasBeenSet = true;
64 m_markerStyleSettings = std::forward<MarkerStyleSettingsT>(value);
65 }
66 template <typename MarkerStyleSettingsT = LineChartMarkerStyleSettings>
67 LineChartSeriesSettings& WithMarkerStyleSettings(MarkerStyleSettingsT&& value) {
68 SetMarkerStyleSettings(std::forward<MarkerStyleSettingsT>(value));
69 return *this;
70 }
72
74
77 inline const DecalSettings& GetDecalSettings() const { return m_decalSettings; }
78 inline bool DecalSettingsHasBeenSet() const { return m_decalSettingsHasBeenSet; }
79 template <typename DecalSettingsT = DecalSettings>
80 void SetDecalSettings(DecalSettingsT&& value) {
81 m_decalSettingsHasBeenSet = true;
82 m_decalSettings = std::forward<DecalSettingsT>(value);
83 }
84 template <typename DecalSettingsT = DecalSettings>
85 LineChartSeriesSettings& WithDecalSettings(DecalSettingsT&& value) {
86 SetDecalSettings(std::forward<DecalSettingsT>(value));
87 return *this;
88 }
90 private:
91 LineChartLineStyleSettings m_lineStyleSettings;
92
93 LineChartMarkerStyleSettings m_markerStyleSettings;
94
95 DecalSettings m_decalSettings;
96 bool m_lineStyleSettingsHasBeenSet = false;
97 bool m_markerStyleSettingsHasBeenSet = false;
98 bool m_decalSettingsHasBeenSet = false;
99};
100
101} // namespace Model
102} // namespace QuickSight
103} // namespace Aws
LineChartSeriesSettings & WithDecalSettings(DecalSettingsT &&value)
AWS_QUICKSIGHT_API LineChartSeriesSettings & operator=(Aws::Utils::Json::JsonView jsonValue)
const LineChartLineStyleSettings & GetLineStyleSettings() const
LineChartSeriesSettings & WithMarkerStyleSettings(MarkerStyleSettingsT &&value)
const LineChartMarkerStyleSettings & GetMarkerStyleSettings() const
AWS_QUICKSIGHT_API LineChartSeriesSettings()=default
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
void SetMarkerStyleSettings(MarkerStyleSettingsT &&value)
AWS_QUICKSIGHT_API LineChartSeriesSettings(Aws::Utils::Json::JsonView jsonValue)
LineChartSeriesSettings & WithLineStyleSettings(LineStyleSettingsT &&value)
Aws::Utils::Json::JsonValue JsonValue