AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
UpdateDashboardLinksResult.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <utility>
11
12namespace Aws
13{
14template<typename RESULT_TYPE>
15class AmazonWebServiceResult;
16
17namespace Utils
18{
19namespace Json
20{
21 class JsonValue;
22} // namespace Json
23} // namespace Utils
24namespace QuickSight
25{
26namespace Model
27{
29 {
30 public:
31 AWS_QUICKSIGHT_API UpdateDashboardLinksResult() = default;
34
35
37
38 inline const Aws::String& GetRequestId() const { return m_requestId; }
39 template<typename RequestIdT = Aws::String>
40 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
41 template<typename RequestIdT = Aws::String>
42 UpdateDashboardLinksResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
44
46
49 inline int GetStatus() const { return m_status; }
50 inline void SetStatus(int value) { m_statusHasBeenSet = true; m_status = value; }
51 inline UpdateDashboardLinksResult& WithStatus(int value) { SetStatus(value); return *this;}
53
55
58 inline const Aws::String& GetDashboardArn() const { return m_dashboardArn; }
59 template<typename DashboardArnT = Aws::String>
60 void SetDashboardArn(DashboardArnT&& value) { m_dashboardArnHasBeenSet = true; m_dashboardArn = std::forward<DashboardArnT>(value); }
61 template<typename DashboardArnT = Aws::String>
62 UpdateDashboardLinksResult& WithDashboardArn(DashboardArnT&& value) { SetDashboardArn(std::forward<DashboardArnT>(value)); return *this;}
64
66
70 inline const Aws::Vector<Aws::String>& GetLinkEntities() const { return m_linkEntities; }
71 template<typename LinkEntitiesT = Aws::Vector<Aws::String>>
72 void SetLinkEntities(LinkEntitiesT&& value) { m_linkEntitiesHasBeenSet = true; m_linkEntities = std::forward<LinkEntitiesT>(value); }
73 template<typename LinkEntitiesT = Aws::Vector<Aws::String>>
74 UpdateDashboardLinksResult& WithLinkEntities(LinkEntitiesT&& value) { SetLinkEntities(std::forward<LinkEntitiesT>(value)); return *this;}
75 template<typename LinkEntitiesT = Aws::String>
76 UpdateDashboardLinksResult& AddLinkEntities(LinkEntitiesT&& value) { m_linkEntitiesHasBeenSet = true; m_linkEntities.emplace_back(std::forward<LinkEntitiesT>(value)); return *this; }
78 private:
79
80 Aws::String m_requestId;
81 bool m_requestIdHasBeenSet = false;
82
83 int m_status{0};
84 bool m_statusHasBeenSet = false;
85
86 Aws::String m_dashboardArn;
87 bool m_dashboardArnHasBeenSet = false;
88
89 Aws::Vector<Aws::String> m_linkEntities;
90 bool m_linkEntitiesHasBeenSet = false;
91 };
92
93} // namespace Model
94} // namespace QuickSight
95} // 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