AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
DashboardVisualResult.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace QuickSight
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_QUICKSIGHT_API DashboardVisualResult() = default;
38 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetDashboardId() const { return m_dashboardId; }
46 inline bool DashboardIdHasBeenSet() const { return m_dashboardIdHasBeenSet; }
47 template<typename DashboardIdT = Aws::String>
48 void SetDashboardId(DashboardIdT&& value) { m_dashboardIdHasBeenSet = true; m_dashboardId = std::forward<DashboardIdT>(value); }
49 template<typename DashboardIdT = Aws::String>
50 DashboardVisualResult& WithDashboardId(DashboardIdT&& value) { SetDashboardId(std::forward<DashboardIdT>(value)); return *this;}
52
54
57 inline const Aws::String& GetDashboardName() const { return m_dashboardName; }
58 inline bool DashboardNameHasBeenSet() const { return m_dashboardNameHasBeenSet; }
59 template<typename DashboardNameT = Aws::String>
60 void SetDashboardName(DashboardNameT&& value) { m_dashboardNameHasBeenSet = true; m_dashboardName = std::forward<DashboardNameT>(value); }
61 template<typename DashboardNameT = Aws::String>
62 DashboardVisualResult& WithDashboardName(DashboardNameT&& value) { SetDashboardName(std::forward<DashboardNameT>(value)); return *this;}
64
66
69 inline const Aws::String& GetSheetId() const { return m_sheetId; }
70 inline bool SheetIdHasBeenSet() const { return m_sheetIdHasBeenSet; }
71 template<typename SheetIdT = Aws::String>
72 void SetSheetId(SheetIdT&& value) { m_sheetIdHasBeenSet = true; m_sheetId = std::forward<SheetIdT>(value); }
73 template<typename SheetIdT = Aws::String>
74 DashboardVisualResult& WithSheetId(SheetIdT&& value) { SetSheetId(std::forward<SheetIdT>(value)); return *this;}
76
78
81 inline const Aws::String& GetSheetName() const { return m_sheetName; }
82 inline bool SheetNameHasBeenSet() const { return m_sheetNameHasBeenSet; }
83 template<typename SheetNameT = Aws::String>
84 void SetSheetName(SheetNameT&& value) { m_sheetNameHasBeenSet = true; m_sheetName = std::forward<SheetNameT>(value); }
85 template<typename SheetNameT = Aws::String>
86 DashboardVisualResult& WithSheetName(SheetNameT&& value) { SetSheetName(std::forward<SheetNameT>(value)); return *this;}
88
90
93 inline const Aws::String& GetVisualId() const { return m_visualId; }
94 inline bool VisualIdHasBeenSet() const { return m_visualIdHasBeenSet; }
95 template<typename VisualIdT = Aws::String>
96 void SetVisualId(VisualIdT&& value) { m_visualIdHasBeenSet = true; m_visualId = std::forward<VisualIdT>(value); }
97 template<typename VisualIdT = Aws::String>
98 DashboardVisualResult& WithVisualId(VisualIdT&& value) { SetVisualId(std::forward<VisualIdT>(value)); return *this;}
100
102
105 inline const Aws::String& GetVisualTitle() const { return m_visualTitle; }
106 inline bool VisualTitleHasBeenSet() const { return m_visualTitleHasBeenSet; }
107 template<typename VisualTitleT = Aws::String>
108 void SetVisualTitle(VisualTitleT&& value) { m_visualTitleHasBeenSet = true; m_visualTitle = std::forward<VisualTitleT>(value); }
109 template<typename VisualTitleT = Aws::String>
110 DashboardVisualResult& WithVisualTitle(VisualTitleT&& value) { SetVisualTitle(std::forward<VisualTitleT>(value)); return *this;}
112
114
117 inline const Aws::String& GetVisualSubtitle() const { return m_visualSubtitle; }
118 inline bool VisualSubtitleHasBeenSet() const { return m_visualSubtitleHasBeenSet; }
119 template<typename VisualSubtitleT = Aws::String>
120 void SetVisualSubtitle(VisualSubtitleT&& value) { m_visualSubtitleHasBeenSet = true; m_visualSubtitle = std::forward<VisualSubtitleT>(value); }
121 template<typename VisualSubtitleT = Aws::String>
122 DashboardVisualResult& WithVisualSubtitle(VisualSubtitleT&& value) { SetVisualSubtitle(std::forward<VisualSubtitleT>(value)); return *this;}
124
126
129 inline const Aws::String& GetDashboardUrl() const { return m_dashboardUrl; }
130 inline bool DashboardUrlHasBeenSet() const { return m_dashboardUrlHasBeenSet; }
131 template<typename DashboardUrlT = Aws::String>
132 void SetDashboardUrl(DashboardUrlT&& value) { m_dashboardUrlHasBeenSet = true; m_dashboardUrl = std::forward<DashboardUrlT>(value); }
133 template<typename DashboardUrlT = Aws::String>
134 DashboardVisualResult& WithDashboardUrl(DashboardUrlT&& value) { SetDashboardUrl(std::forward<DashboardUrlT>(value)); return *this;}
136 private:
137
138 Aws::String m_dashboardId;
139 bool m_dashboardIdHasBeenSet = false;
140
141 Aws::String m_dashboardName;
142 bool m_dashboardNameHasBeenSet = false;
143
144 Aws::String m_sheetId;
145 bool m_sheetIdHasBeenSet = false;
146
147 Aws::String m_sheetName;
148 bool m_sheetNameHasBeenSet = false;
149
150 Aws::String m_visualId;
151 bool m_visualIdHasBeenSet = false;
152
153 Aws::String m_visualTitle;
154 bool m_visualTitleHasBeenSet = false;
155
156 Aws::String m_visualSubtitle;
157 bool m_visualSubtitleHasBeenSet = false;
158
159 Aws::String m_dashboardUrl;
160 bool m_dashboardUrlHasBeenSet = false;
161 };
162
163} // namespace Model
164} // namespace QuickSight
165} // namespace Aws
DashboardVisualResult & WithVisualSubtitle(VisualSubtitleT &&value)
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
DashboardVisualResult & WithSheetName(SheetNameT &&value)
DashboardVisualResult & WithDashboardUrl(DashboardUrlT &&value)
DashboardVisualResult & WithVisualTitle(VisualTitleT &&value)
DashboardVisualResult & WithDashboardName(DashboardNameT &&value)
DashboardVisualResult & WithVisualId(VisualIdT &&value)
AWS_QUICKSIGHT_API DashboardVisualResult()=default
DashboardVisualResult & WithSheetId(SheetIdT &&value)
AWS_QUICKSIGHT_API DashboardVisualResult & operator=(Aws::Utils::Json::JsonView jsonValue)
DashboardVisualResult & WithDashboardId(DashboardIdT &&value)
AWS_QUICKSIGHT_API DashboardVisualResult(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue