AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
LookupDeveloperIdentityRequest.h
1
6#pragma once
7#include <aws/cognito-identity/CognitoIdentityRequest.h>
8#include <aws/cognito-identity/CognitoIdentity_EXPORTS.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10
11#include <utility>
12
13namespace Aws {
14namespace CognitoIdentity {
15namespace Model {
16
24 public:
25 AWS_COGNITOIDENTITY_API LookupDeveloperIdentityRequest() = 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 "LookupDeveloperIdentity"; }
32
33 AWS_COGNITOIDENTITY_API Aws::String SerializePayload() const override;
34
35 AWS_COGNITOIDENTITY_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
36
38
41 inline const Aws::String& GetIdentityPoolId() const { return m_identityPoolId; }
42 inline bool IdentityPoolIdHasBeenSet() const { return m_identityPoolIdHasBeenSet; }
43 template <typename IdentityPoolIdT = Aws::String>
44 void SetIdentityPoolId(IdentityPoolIdT&& value) {
45 m_identityPoolIdHasBeenSet = true;
46 m_identityPoolId = std::forward<IdentityPoolIdT>(value);
47 }
48 template <typename IdentityPoolIdT = Aws::String>
50 SetIdentityPoolId(std::forward<IdentityPoolIdT>(value));
51 return *this;
52 }
54
56
59 inline const Aws::String& GetIdentityId() const { return m_identityId; }
60 inline bool IdentityIdHasBeenSet() const { return m_identityIdHasBeenSet; }
61 template <typename IdentityIdT = Aws::String>
62 void SetIdentityId(IdentityIdT&& value) {
63 m_identityIdHasBeenSet = true;
64 m_identityId = std::forward<IdentityIdT>(value);
65 }
66 template <typename IdentityIdT = Aws::String>
68 SetIdentityId(std::forward<IdentityIdT>(value));
69 return *this;
70 }
72
74
79 inline const Aws::String& GetDeveloperUserIdentifier() const { return m_developerUserIdentifier; }
80 inline bool DeveloperUserIdentifierHasBeenSet() const { return m_developerUserIdentifierHasBeenSet; }
81 template <typename DeveloperUserIdentifierT = Aws::String>
82 void SetDeveloperUserIdentifier(DeveloperUserIdentifierT&& value) {
83 m_developerUserIdentifierHasBeenSet = true;
84 m_developerUserIdentifier = std::forward<DeveloperUserIdentifierT>(value);
85 }
86 template <typename DeveloperUserIdentifierT = Aws::String>
88 SetDeveloperUserIdentifier(std::forward<DeveloperUserIdentifierT>(value));
89 return *this;
90 }
92
94
97 inline int GetMaxResults() const { return m_maxResults; }
98 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
99 inline void SetMaxResults(int value) {
100 m_maxResultsHasBeenSet = true;
101 m_maxResults = value;
102 }
104 SetMaxResults(value);
105 return *this;
106 }
108
110
118 inline const Aws::String& GetNextToken() const { return m_nextToken; }
119 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
120 template <typename NextTokenT = Aws::String>
121 void SetNextToken(NextTokenT&& value) {
122 m_nextTokenHasBeenSet = true;
123 m_nextToken = std::forward<NextTokenT>(value);
124 }
125 template <typename NextTokenT = Aws::String>
127 SetNextToken(std::forward<NextTokenT>(value));
128 return *this;
129 }
131 private:
132 Aws::String m_identityPoolId;
133
134 Aws::String m_identityId;
135
136 Aws::String m_developerUserIdentifier;
137
138 int m_maxResults{0};
139
140 Aws::String m_nextToken;
141 bool m_identityPoolIdHasBeenSet = false;
142 bool m_identityIdHasBeenSet = false;
143 bool m_developerUserIdentifierHasBeenSet = false;
144 bool m_maxResultsHasBeenSet = false;
145 bool m_nextTokenHasBeenSet = false;
146};
147
148} // namespace Model
149} // namespace CognitoIdentity
150} // namespace Aws
AWS_COGNITOIDENTITY_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
LookupDeveloperIdentityRequest & WithIdentityId(IdentityIdT &&value)
LookupDeveloperIdentityRequest & WithNextToken(NextTokenT &&value)
AWS_COGNITOIDENTITY_API Aws::String SerializePayload() const override
AWS_COGNITOIDENTITY_API LookupDeveloperIdentityRequest()=default
LookupDeveloperIdentityRequest & WithIdentityPoolId(IdentityPoolIdT &&value)
LookupDeveloperIdentityRequest & WithDeveloperUserIdentifier(DeveloperUserIdentifierT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String