AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
DescribeUserStackAssociationsRequest.h
Go to the documentation of this file.
1
6#pragma once
11#include <utility>
12
13namespace Aws
14{
15namespace AppStream
16{
17namespace Model
18{
19
23 {
24 public:
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 "DescribeUserStackAssociations"; }
32
34
36
37
41 inline const Aws::String& GetStackName() const{ return m_stackName; }
42
46 inline bool StackNameHasBeenSet() const { return m_stackNameHasBeenSet; }
47
51 inline void SetStackName(const Aws::String& value) { m_stackNameHasBeenSet = true; m_stackName = value; }
52
56 inline void SetStackName(Aws::String&& value) { m_stackNameHasBeenSet = true; m_stackName = std::move(value); }
57
61 inline void SetStackName(const char* value) { m_stackNameHasBeenSet = true; m_stackName.assign(value); }
62
66 inline DescribeUserStackAssociationsRequest& WithStackName(const Aws::String& value) { SetStackName(value); return *this;}
67
71 inline DescribeUserStackAssociationsRequest& WithStackName(Aws::String&& value) { SetStackName(std::move(value)); return *this;}
72
76 inline DescribeUserStackAssociationsRequest& WithStackName(const char* value) { SetStackName(value); return *this;}
77
78
83 inline const Aws::String& GetUserName() const{ return m_userName; }
84
89 inline bool UserNameHasBeenSet() const { return m_userNameHasBeenSet; }
90
95 inline void SetUserName(const Aws::String& value) { m_userNameHasBeenSet = true; m_userName = value; }
96
101 inline void SetUserName(Aws::String&& value) { m_userNameHasBeenSet = true; m_userName = std::move(value); }
102
107 inline void SetUserName(const char* value) { m_userNameHasBeenSet = true; m_userName.assign(value); }
108
113 inline DescribeUserStackAssociationsRequest& WithUserName(const Aws::String& value) { SetUserName(value); return *this;}
114
119 inline DescribeUserStackAssociationsRequest& WithUserName(Aws::String&& value) { SetUserName(std::move(value)); return *this;}
120
125 inline DescribeUserStackAssociationsRequest& WithUserName(const char* value) { SetUserName(value); return *this;}
126
127
132 inline const AuthenticationType& GetAuthenticationType() const{ return m_authenticationType; }
133
138 inline bool AuthenticationTypeHasBeenSet() const { return m_authenticationTypeHasBeenSet; }
139
144 inline void SetAuthenticationType(const AuthenticationType& value) { m_authenticationTypeHasBeenSet = true; m_authenticationType = value; }
145
150 inline void SetAuthenticationType(AuthenticationType&& value) { m_authenticationTypeHasBeenSet = true; m_authenticationType = std::move(value); }
151
157
163
164
168 inline int GetMaxResults() const{ return m_maxResults; }
169
173 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
174
178 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
179
183 inline DescribeUserStackAssociationsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
184
185
190 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
191
196 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
197
202 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
203
208 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
209
214 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
215
220 inline DescribeUserStackAssociationsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
221
226 inline DescribeUserStackAssociationsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
227
232 inline DescribeUserStackAssociationsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
233
234 private:
235
236 Aws::String m_stackName;
237 bool m_stackNameHasBeenSet = false;
238
239 Aws::String m_userName;
240 bool m_userNameHasBeenSet = false;
241
242 AuthenticationType m_authenticationType;
243 bool m_authenticationTypeHasBeenSet = false;
244
245 int m_maxResults;
246 bool m_maxResultsHasBeenSet = false;
247
248 Aws::String m_nextToken;
249 bool m_nextTokenHasBeenSet = false;
250 };
251
252} // namespace Model
253} // namespace AppStream
254} // namespace Aws
#define AWS_APPSTREAM_API
DescribeUserStackAssociationsRequest & WithUserName(const char *value)
DescribeUserStackAssociationsRequest & WithUserName(Aws::String &&value)
DescribeUserStackAssociationsRequest & WithNextToken(const Aws::String &value)
AWS_APPSTREAM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeUserStackAssociationsRequest & WithUserName(const Aws::String &value)
DescribeUserStackAssociationsRequest & WithStackName(Aws::String &&value)
AWS_APPSTREAM_API Aws::String SerializePayload() const override
DescribeUserStackAssociationsRequest & WithNextToken(Aws::String &&value)
DescribeUserStackAssociationsRequest & WithAuthenticationType(const AuthenticationType &value)
DescribeUserStackAssociationsRequest & WithNextToken(const char *value)
DescribeUserStackAssociationsRequest & WithAuthenticationType(AuthenticationType &&value)
DescribeUserStackAssociationsRequest & WithStackName(const char *value)
DescribeUserStackAssociationsRequest & WithStackName(const Aws::String &value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String