AWS SDK for C++

AWS SDK for C++ Version 1.11.747

Loading...
Searching...
No Matches
DescribeFolderPermissionsRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/quicksight/QuickSightRequest.h>
9#include <aws/quicksight/QuickSight_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Http {
15class URI;
16} // namespace Http
17namespace QuickSight {
18namespace Model {
19
23 public:
24 AWS_QUICKSIGHT_API DescribeFolderPermissionsRequest() = default;
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "DescribeFolderPermissions"; }
31
32 AWS_QUICKSIGHT_API Aws::String SerializePayload() const override;
33
34 AWS_QUICKSIGHT_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
35
37
40 inline const Aws::String& GetAwsAccountId() const { return m_awsAccountId; }
41 inline bool AwsAccountIdHasBeenSet() const { return m_awsAccountIdHasBeenSet; }
42 template <typename AwsAccountIdT = Aws::String>
43 void SetAwsAccountId(AwsAccountIdT&& value) {
44 m_awsAccountIdHasBeenSet = true;
45 m_awsAccountId = std::forward<AwsAccountIdT>(value);
46 }
47 template <typename AwsAccountIdT = Aws::String>
49 SetAwsAccountId(std::forward<AwsAccountIdT>(value));
50 return *this;
51 }
53
55
58 inline const Aws::String& GetFolderId() const { return m_folderId; }
59 inline bool FolderIdHasBeenSet() const { return m_folderIdHasBeenSet; }
60 template <typename FolderIdT = Aws::String>
61 void SetFolderId(FolderIdT&& value) {
62 m_folderIdHasBeenSet = true;
63 m_folderId = std::forward<FolderIdT>(value);
64 }
65 template <typename FolderIdT = Aws::String>
67 SetFolderId(std::forward<FolderIdT>(value));
68 return *this;
69 }
71
73
76 inline const Aws::String& GetNamespace() const { return m_namespace; }
77 inline bool NamespaceHasBeenSet() const { return m_namespaceHasBeenSet; }
78 template <typename NamespaceT = Aws::String>
79 void SetNamespace(NamespaceT&& value) {
80 m_namespaceHasBeenSet = true;
81 m_namespace = std::forward<NamespaceT>(value);
82 }
83 template <typename NamespaceT = Aws::String>
85 SetNamespace(std::forward<NamespaceT>(value));
86 return *this;
87 }
89
91
94 inline int GetMaxResults() const { return m_maxResults; }
95 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
96 inline void SetMaxResults(int value) {
97 m_maxResultsHasBeenSet = true;
98 m_maxResults = value;
99 }
101 SetMaxResults(value);
102 return *this;
103 }
105
107
110 inline const Aws::String& GetNextToken() const { return m_nextToken; }
111 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
112 template <typename NextTokenT = Aws::String>
113 void SetNextToken(NextTokenT&& value) {
114 m_nextTokenHasBeenSet = true;
115 m_nextToken = std::forward<NextTokenT>(value);
116 }
117 template <typename NextTokenT = Aws::String>
119 SetNextToken(std::forward<NextTokenT>(value));
120 return *this;
121 }
123 private:
124 Aws::String m_awsAccountId;
125
126 Aws::String m_folderId;
127
128 Aws::String m_namespace;
129
130 int m_maxResults{0};
131
132 Aws::String m_nextToken;
133 bool m_awsAccountIdHasBeenSet = false;
134 bool m_folderIdHasBeenSet = false;
135 bool m_namespaceHasBeenSet = false;
136 bool m_maxResultsHasBeenSet = false;
137 bool m_nextTokenHasBeenSet = false;
138};
139
140} // namespace Model
141} // namespace QuickSight
142} // namespace Aws
AWS_QUICKSIGHT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
DescribeFolderPermissionsRequest & WithFolderId(FolderIdT &&value)
DescribeFolderPermissionsRequest & WithAwsAccountId(AwsAccountIdT &&value)
AWS_QUICKSIGHT_API DescribeFolderPermissionsRequest()=default
AWS_QUICKSIGHT_API Aws::String SerializePayload() const override
DescribeFolderPermissionsRequest & WithNamespace(NamespaceT &&value)
DescribeFolderPermissionsRequest & WithNextToken(NextTokenT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String