AWS SDK for C++

AWS SDK for C++ Version 1.11.757

Loading...
Searching...
No Matches
UpdateDashboardLinksResult.h
1
6#pragma once
7#include <aws/core/http/HttpResponse.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/quicksight/QuickSight_EXPORTS.h>
11
12#include <utility>
13
14namespace Aws {
15template <typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils {
19namespace Json {
20class JsonValue;
21} // namespace Json
22} // namespace Utils
23namespace QuickSight {
24namespace Model {
26 public:
27 AWS_QUICKSIGHT_API UpdateDashboardLinksResult() = default;
30
32
33 inline const Aws::String& GetRequestId() const { return m_requestId; }
34 template <typename RequestIdT = Aws::String>
35 void SetRequestId(RequestIdT&& value) {
36 m_requestIdHasBeenSet = true;
37 m_requestId = std::forward<RequestIdT>(value);
38 }
39 template <typename RequestIdT = Aws::String>
41 SetRequestId(std::forward<RequestIdT>(value));
42 return *this;
43 }
45
47
50 inline int GetStatus() const { return m_status; }
51 inline void SetStatus(int value) {
52 m_statusHasBeenSet = true;
53 m_status = value;
54 }
56 SetStatus(value);
57 return *this;
58 }
60
62
65 inline const Aws::String& GetDashboardArn() const { return m_dashboardArn; }
66 template <typename DashboardArnT = Aws::String>
67 void SetDashboardArn(DashboardArnT&& value) {
68 m_dashboardArnHasBeenSet = true;
69 m_dashboardArn = std::forward<DashboardArnT>(value);
70 }
71 template <typename DashboardArnT = Aws::String>
73 SetDashboardArn(std::forward<DashboardArnT>(value));
74 return *this;
75 }
77
79
83 inline const Aws::Vector<Aws::String>& GetLinkEntities() const { return m_linkEntities; }
84 template <typename LinkEntitiesT = Aws::Vector<Aws::String>>
85 void SetLinkEntities(LinkEntitiesT&& value) {
86 m_linkEntitiesHasBeenSet = true;
87 m_linkEntities = std::forward<LinkEntitiesT>(value);
88 }
89 template <typename LinkEntitiesT = Aws::Vector<Aws::String>>
91 SetLinkEntities(std::forward<LinkEntitiesT>(value));
92 return *this;
93 }
94 template <typename LinkEntitiesT = Aws::String>
96 m_linkEntitiesHasBeenSet = true;
97 m_linkEntities.emplace_back(std::forward<LinkEntitiesT>(value));
98 return *this;
99 }
101 inline Aws::Http::HttpResponseCode GetHttpResponseCode() const { return m_HttpResponseCode; }
102
103 private:
104 Aws::String m_requestId;
105
106 int m_status{0};
107
108 Aws::String m_dashboardArn;
109
110 Aws::Vector<Aws::String> m_linkEntities;
111 Aws::Http::HttpResponseCode m_HttpResponseCode;
112 bool m_requestIdHasBeenSet = false;
113 bool m_statusHasBeenSet = false;
114 bool m_dashboardArnHasBeenSet = false;
115 bool m_linkEntitiesHasBeenSet = false;
116};
117
118} // namespace Model
119} // namespace QuickSight
120} // namespace Aws
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue