AWS SDK for C++

AWS SDK for C++ Version 1.11.747

Loading...
Searching...
No Matches
UpdateDashboardLinksRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/quicksight/QuickSightRequest.h>
10#include <aws/quicksight/QuickSight_EXPORTS.h>
11
12#include <utility>
13
14namespace Aws {
15namespace QuickSight {
16namespace Model {
17
21 public:
22 AWS_QUICKSIGHT_API UpdateDashboardLinksRequest() = default;
23
24 // Service request name is the Operation name which will send this request out,
25 // each operation should has unique request name, so that we can get operation's name from this request.
26 // Note: this is not true for response, multiple operations may have the same response name,
27 // so we can not get operation's name from response.
28 inline virtual const char* GetServiceRequestName() const override { return "UpdateDashboardLinks"; }
29
30 AWS_QUICKSIGHT_API Aws::String SerializePayload() const override;
31
33
37 inline const Aws::String& GetAwsAccountId() const { return m_awsAccountId; }
38 inline bool AwsAccountIdHasBeenSet() const { return m_awsAccountIdHasBeenSet; }
39 template <typename AwsAccountIdT = Aws::String>
40 void SetAwsAccountId(AwsAccountIdT&& value) {
41 m_awsAccountIdHasBeenSet = true;
42 m_awsAccountId = std::forward<AwsAccountIdT>(value);
43 }
44 template <typename AwsAccountIdT = Aws::String>
46 SetAwsAccountId(std::forward<AwsAccountIdT>(value));
47 return *this;
48 }
50
52
55 inline const Aws::String& GetDashboardId() const { return m_dashboardId; }
56 inline bool DashboardIdHasBeenSet() const { return m_dashboardIdHasBeenSet; }
57 template <typename DashboardIdT = Aws::String>
58 void SetDashboardId(DashboardIdT&& value) {
59 m_dashboardIdHasBeenSet = true;
60 m_dashboardId = std::forward<DashboardIdT>(value);
61 }
62 template <typename DashboardIdT = Aws::String>
64 SetDashboardId(std::forward<DashboardIdT>(value));
65 return *this;
66 }
68
70
74 inline const Aws::Vector<Aws::String>& GetLinkEntities() const { return m_linkEntities; }
75 inline bool LinkEntitiesHasBeenSet() const { return m_linkEntitiesHasBeenSet; }
76 template <typename LinkEntitiesT = Aws::Vector<Aws::String>>
77 void SetLinkEntities(LinkEntitiesT&& value) {
78 m_linkEntitiesHasBeenSet = true;
79 m_linkEntities = std::forward<LinkEntitiesT>(value);
80 }
81 template <typename LinkEntitiesT = Aws::Vector<Aws::String>>
83 SetLinkEntities(std::forward<LinkEntitiesT>(value));
84 return *this;
85 }
86 template <typename LinkEntitiesT = Aws::String>
88 m_linkEntitiesHasBeenSet = true;
89 m_linkEntities.emplace_back(std::forward<LinkEntitiesT>(value));
90 return *this;
91 }
93 private:
94 Aws::String m_awsAccountId;
95
96 Aws::String m_dashboardId;
97
98 Aws::Vector<Aws::String> m_linkEntities;
99 bool m_awsAccountIdHasBeenSet = false;
100 bool m_dashboardIdHasBeenSet = false;
101 bool m_linkEntitiesHasBeenSet = false;
102};
103
104} // namespace Model
105} // namespace QuickSight
106} // namespace Aws
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector