AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeUserStackAssociationsRequest.h
1
6#pragma once
7#include <aws/appstream/AppStream_EXPORTS.h>
8#include <aws/appstream/AppStreamRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/appstream/model/AuthenticationType.h>
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
33 AWS_APPSTREAM_API Aws::String SerializePayload() const override;
34
36
37
39
42 inline const Aws::String& GetStackName() const{ return m_stackName; }
43 inline bool StackNameHasBeenSet() const { return m_stackNameHasBeenSet; }
44 inline void SetStackName(const Aws::String& value) { m_stackNameHasBeenSet = true; m_stackName = value; }
45 inline void SetStackName(Aws::String&& value) { m_stackNameHasBeenSet = true; m_stackName = std::move(value); }
46 inline void SetStackName(const char* value) { m_stackNameHasBeenSet = true; m_stackName.assign(value); }
47 inline DescribeUserStackAssociationsRequest& WithStackName(const Aws::String& value) { SetStackName(value); return *this;}
48 inline DescribeUserStackAssociationsRequest& WithStackName(Aws::String&& value) { SetStackName(std::move(value)); return *this;}
49 inline DescribeUserStackAssociationsRequest& WithStackName(const char* value) { SetStackName(value); return *this;}
51
53
57 inline const Aws::String& GetUserName() const{ return m_userName; }
58 inline bool UserNameHasBeenSet() const { return m_userNameHasBeenSet; }
59 inline void SetUserName(const Aws::String& value) { m_userNameHasBeenSet = true; m_userName = value; }
60 inline void SetUserName(Aws::String&& value) { m_userNameHasBeenSet = true; m_userName = std::move(value); }
61 inline void SetUserName(const char* value) { m_userNameHasBeenSet = true; m_userName.assign(value); }
62 inline DescribeUserStackAssociationsRequest& WithUserName(const Aws::String& value) { SetUserName(value); return *this;}
63 inline DescribeUserStackAssociationsRequest& WithUserName(Aws::String&& value) { SetUserName(std::move(value)); return *this;}
64 inline DescribeUserStackAssociationsRequest& WithUserName(const char* value) { SetUserName(value); return *this;}
66
68
72 inline const AuthenticationType& GetAuthenticationType() const{ return m_authenticationType; }
73 inline bool AuthenticationTypeHasBeenSet() const { return m_authenticationTypeHasBeenSet; }
74 inline void SetAuthenticationType(const AuthenticationType& value) { m_authenticationTypeHasBeenSet = true; m_authenticationType = value; }
75 inline void SetAuthenticationType(AuthenticationType&& value) { m_authenticationTypeHasBeenSet = true; m_authenticationType = std::move(value); }
79
81
84 inline int GetMaxResults() const{ return m_maxResults; }
85 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
86 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
87 inline DescribeUserStackAssociationsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
89
91
95 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
96 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
97 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
98 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
99 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
100 inline DescribeUserStackAssociationsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
101 inline DescribeUserStackAssociationsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
102 inline DescribeUserStackAssociationsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
104 private:
105
106 Aws::String m_stackName;
107 bool m_stackNameHasBeenSet = false;
108
109 Aws::String m_userName;
110 bool m_userNameHasBeenSet = false;
111
112 AuthenticationType m_authenticationType;
113 bool m_authenticationTypeHasBeenSet = false;
114
115 int m_maxResults;
116 bool m_maxResultsHasBeenSet = false;
117
118 Aws::String m_nextToken;
119 bool m_nextTokenHasBeenSet = false;
120 };
121
122} // namespace Model
123} // namespace AppStream
124} // namespace Aws
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