AWS SDK for C++

AWS SDK for C++ Version 1.11.606

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:
25 AWS_APPSTREAM_API DescribeUserStackAssociationsRequest() = 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 "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 template<typename StackNameT = Aws::String>
45 void SetStackName(StackNameT&& value) { m_stackNameHasBeenSet = true; m_stackName = std::forward<StackNameT>(value); }
46 template<typename StackNameT = Aws::String>
47 DescribeUserStackAssociationsRequest& WithStackName(StackNameT&& value) { SetStackName(std::forward<StackNameT>(value)); return *this;}
49
51
55 inline const Aws::String& GetUserName() const { return m_userName; }
56 inline bool UserNameHasBeenSet() const { return m_userNameHasBeenSet; }
57 template<typename UserNameT = Aws::String>
58 void SetUserName(UserNameT&& value) { m_userNameHasBeenSet = true; m_userName = std::forward<UserNameT>(value); }
59 template<typename UserNameT = Aws::String>
60 DescribeUserStackAssociationsRequest& WithUserName(UserNameT&& value) { SetUserName(std::forward<UserNameT>(value)); return *this;}
62
64
68 inline AuthenticationType GetAuthenticationType() const { return m_authenticationType; }
69 inline bool AuthenticationTypeHasBeenSet() const { return m_authenticationTypeHasBeenSet; }
70 inline void SetAuthenticationType(AuthenticationType value) { m_authenticationTypeHasBeenSet = true; m_authenticationType = value; }
73
75
78 inline int GetMaxResults() const { return m_maxResults; }
79 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
80 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
81 inline DescribeUserStackAssociationsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
83
85
89 inline const Aws::String& GetNextToken() const { return m_nextToken; }
90 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
91 template<typename NextTokenT = Aws::String>
92 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
93 template<typename NextTokenT = Aws::String>
94 DescribeUserStackAssociationsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
96 private:
97
98 Aws::String m_stackName;
99 bool m_stackNameHasBeenSet = false;
100
101 Aws::String m_userName;
102 bool m_userNameHasBeenSet = false;
103
105 bool m_authenticationTypeHasBeenSet = false;
106
107 int m_maxResults{0};
108 bool m_maxResultsHasBeenSet = false;
109
110 Aws::String m_nextToken;
111 bool m_nextTokenHasBeenSet = false;
112 };
113
114} // namespace Model
115} // namespace AppStream
116} // namespace Aws
DescribeUserStackAssociationsRequest & WithUserName(UserNameT &&value)
AWS_APPSTREAM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeUserStackAssociationsRequest & WithAuthenticationType(AuthenticationType value)
AWS_APPSTREAM_API Aws::String SerializePayload() const override
DescribeUserStackAssociationsRequest & WithNextToken(NextTokenT &&value)
DescribeUserStackAssociationsRequest & WithStackName(StackNameT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String