AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
UpdateDashboardLinksRequest.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_EXPORTS.h>
8#include <aws/quicksight/QuickSightRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <utility>
12
13namespace Aws
14{
15namespace QuickSight
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_QUICKSIGHT_API UpdateDashboardLinksRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "UpdateDashboardLinks"; }
32
33 AWS_QUICKSIGHT_API Aws::String SerializePayload() const override;
34
35
37
41 inline const Aws::String& GetAwsAccountId() const { return m_awsAccountId; }
42 inline bool AwsAccountIdHasBeenSet() const { return m_awsAccountIdHasBeenSet; }
43 template<typename AwsAccountIdT = Aws::String>
44 void SetAwsAccountId(AwsAccountIdT&& value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId = std::forward<AwsAccountIdT>(value); }
45 template<typename AwsAccountIdT = Aws::String>
46 UpdateDashboardLinksRequest& WithAwsAccountId(AwsAccountIdT&& value) { SetAwsAccountId(std::forward<AwsAccountIdT>(value)); return *this;}
48
50
53 inline const Aws::String& GetDashboardId() const { return m_dashboardId; }
54 inline bool DashboardIdHasBeenSet() const { return m_dashboardIdHasBeenSet; }
55 template<typename DashboardIdT = Aws::String>
56 void SetDashboardId(DashboardIdT&& value) { m_dashboardIdHasBeenSet = true; m_dashboardId = std::forward<DashboardIdT>(value); }
57 template<typename DashboardIdT = Aws::String>
58 UpdateDashboardLinksRequest& WithDashboardId(DashboardIdT&& value) { SetDashboardId(std::forward<DashboardIdT>(value)); return *this;}
60
62
66 inline const Aws::Vector<Aws::String>& GetLinkEntities() const { return m_linkEntities; }
67 inline bool LinkEntitiesHasBeenSet() const { return m_linkEntitiesHasBeenSet; }
68 template<typename LinkEntitiesT = Aws::Vector<Aws::String>>
69 void SetLinkEntities(LinkEntitiesT&& value) { m_linkEntitiesHasBeenSet = true; m_linkEntities = std::forward<LinkEntitiesT>(value); }
70 template<typename LinkEntitiesT = Aws::Vector<Aws::String>>
71 UpdateDashboardLinksRequest& WithLinkEntities(LinkEntitiesT&& value) { SetLinkEntities(std::forward<LinkEntitiesT>(value)); return *this;}
72 template<typename LinkEntitiesT = Aws::String>
73 UpdateDashboardLinksRequest& AddLinkEntities(LinkEntitiesT&& value) { m_linkEntitiesHasBeenSet = true; m_linkEntities.emplace_back(std::forward<LinkEntitiesT>(value)); return *this; }
75 private:
76
77 Aws::String m_awsAccountId;
78 bool m_awsAccountIdHasBeenSet = false;
79
80 Aws::String m_dashboardId;
81 bool m_dashboardIdHasBeenSet = false;
82
83 Aws::Vector<Aws::String> m_linkEntities;
84 bool m_linkEntitiesHasBeenSet = false;
85 };
86
87} // namespace Model
88} // namespace QuickSight
89} // namespace Aws
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector