AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListAccountRolesRequest.h
1
6#pragma once
7#include <aws/sso/SSO_EXPORTS.h>
8#include <aws/sso/SSORequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace SSO
19{
20namespace Model
21{
22
26 {
27 public:
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "ListAccountRoles"; }
35
36 AWS_SSO_API Aws::String SerializePayload() const override;
37
38 AWS_SSO_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
41
42
44
48 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
49 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
50 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
51 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
52 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
53 inline ListAccountRolesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
54 inline ListAccountRolesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
55 inline ListAccountRolesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
57
59
62 inline int GetMaxResults() const{ return m_maxResults; }
63 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
64 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
65 inline ListAccountRolesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
67
69
75 inline const Aws::String& GetAccessToken() const{ return m_accessToken; }
76 inline bool AccessTokenHasBeenSet() const { return m_accessTokenHasBeenSet; }
77 inline void SetAccessToken(const Aws::String& value) { m_accessTokenHasBeenSet = true; m_accessToken = value; }
78 inline void SetAccessToken(Aws::String&& value) { m_accessTokenHasBeenSet = true; m_accessToken = std::move(value); }
79 inline void SetAccessToken(const char* value) { m_accessTokenHasBeenSet = true; m_accessToken.assign(value); }
80 inline ListAccountRolesRequest& WithAccessToken(const Aws::String& value) { SetAccessToken(value); return *this;}
81 inline ListAccountRolesRequest& WithAccessToken(Aws::String&& value) { SetAccessToken(std::move(value)); return *this;}
82 inline ListAccountRolesRequest& WithAccessToken(const char* value) { SetAccessToken(value); return *this;}
84
86
89 inline const Aws::String& GetAccountId() const{ return m_accountId; }
90 inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; }
91 inline void SetAccountId(const Aws::String& value) { m_accountIdHasBeenSet = true; m_accountId = value; }
92 inline void SetAccountId(Aws::String&& value) { m_accountIdHasBeenSet = true; m_accountId = std::move(value); }
93 inline void SetAccountId(const char* value) { m_accountIdHasBeenSet = true; m_accountId.assign(value); }
94 inline ListAccountRolesRequest& WithAccountId(const Aws::String& value) { SetAccountId(value); return *this;}
95 inline ListAccountRolesRequest& WithAccountId(Aws::String&& value) { SetAccountId(std::move(value)); return *this;}
96 inline ListAccountRolesRequest& WithAccountId(const char* value) { SetAccountId(value); return *this;}
98 private:
99
100 Aws::String m_nextToken;
101 bool m_nextTokenHasBeenSet = false;
102
103 int m_maxResults;
104 bool m_maxResultsHasBeenSet = false;
105
106 Aws::String m_accessToken;
107 bool m_accessTokenHasBeenSet = false;
108
109 Aws::String m_accountId;
110 bool m_accountIdHasBeenSet = false;
111 };
112
113} // namespace Model
114} // namespace SSO
115} // namespace Aws
ListAccountRolesRequest & WithNextToken(Aws::String &&value)
ListAccountRolesRequest & WithAccountId(Aws::String &&value)
AWS_SSO_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
ListAccountRolesRequest & WithNextToken(const char *value)
ListAccountRolesRequest & WithAccountId(const Aws::String &value)
ListAccountRolesRequest & WithAccessToken(const Aws::String &value)
ListAccountRolesRequest & WithMaxResults(int value)
virtual const char * GetServiceRequestName() const override
ListAccountRolesRequest & WithNextToken(const Aws::String &value)
AWS_SSO_API Aws::String SerializePayload() const override
void SetAccessToken(const Aws::String &value)
ListAccountRolesRequest & WithAccountId(const char *value)
AWS_SSO_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
ListAccountRolesRequest & WithAccessToken(const char *value)
ListAccountRolesRequest & WithAccessToken(Aws::String &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String