AWS SDK for C++

AWS SDK for C++ Version 1.11.685

Loading...
Searching...
No Matches
LookupDeveloperIdentityResult.h
1
6#pragma once
7#include <aws/cognito-identity/CognitoIdentity_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10
11#include <utility>
12
13namespace Aws {
14template <typename RESULT_TYPE>
15class AmazonWebServiceResult;
16
17namespace Utils {
18namespace Json {
19class JsonValue;
20} // namespace Json
21} // namespace Utils
22namespace CognitoIdentity {
23namespace Model {
31 public:
32 AWS_COGNITOIDENTITY_API LookupDeveloperIdentityResult() = default;
35
37
40 inline const Aws::String& GetIdentityId() const { return m_identityId; }
41 template <typename IdentityIdT = Aws::String>
42 void SetIdentityId(IdentityIdT&& value) {
43 m_identityIdHasBeenSet = true;
44 m_identityId = std::forward<IdentityIdT>(value);
45 }
46 template <typename IdentityIdT = Aws::String>
48 SetIdentityId(std::forward<IdentityIdT>(value));
49 return *this;
50 }
52
54
59 inline const Aws::Vector<Aws::String>& GetDeveloperUserIdentifierList() const { return m_developerUserIdentifierList; }
60 template <typename DeveloperUserIdentifierListT = Aws::Vector<Aws::String>>
61 void SetDeveloperUserIdentifierList(DeveloperUserIdentifierListT&& value) {
62 m_developerUserIdentifierListHasBeenSet = true;
63 m_developerUserIdentifierList = std::forward<DeveloperUserIdentifierListT>(value);
64 }
65 template <typename DeveloperUserIdentifierListT = Aws::Vector<Aws::String>>
66 LookupDeveloperIdentityResult& WithDeveloperUserIdentifierList(DeveloperUserIdentifierListT&& value) {
67 SetDeveloperUserIdentifierList(std::forward<DeveloperUserIdentifierListT>(value));
68 return *this;
69 }
70 template <typename DeveloperUserIdentifierListT = Aws::String>
71 LookupDeveloperIdentityResult& AddDeveloperUserIdentifierList(DeveloperUserIdentifierListT&& value) {
72 m_developerUserIdentifierListHasBeenSet = true;
73 m_developerUserIdentifierList.emplace_back(std::forward<DeveloperUserIdentifierListT>(value));
74 return *this;
75 }
77
79
87 inline const Aws::String& GetNextToken() const { return m_nextToken; }
88 template <typename NextTokenT = Aws::String>
89 void SetNextToken(NextTokenT&& value) {
90 m_nextTokenHasBeenSet = true;
91 m_nextToken = std::forward<NextTokenT>(value);
92 }
93 template <typename NextTokenT = Aws::String>
95 SetNextToken(std::forward<NextTokenT>(value));
96 return *this;
97 }
99
101
102 inline const Aws::String& GetRequestId() const { return m_requestId; }
103 template <typename RequestIdT = Aws::String>
104 void SetRequestId(RequestIdT&& value) {
105 m_requestIdHasBeenSet = true;
106 m_requestId = std::forward<RequestIdT>(value);
107 }
108 template <typename RequestIdT = Aws::String>
110 SetRequestId(std::forward<RequestIdT>(value));
111 return *this;
112 }
114 private:
115 Aws::String m_identityId;
116 bool m_identityIdHasBeenSet = false;
117
118 Aws::Vector<Aws::String> m_developerUserIdentifierList;
119 bool m_developerUserIdentifierListHasBeenSet = false;
120
121 Aws::String m_nextToken;
122 bool m_nextTokenHasBeenSet = false;
123
124 Aws::String m_requestId;
125 bool m_requestIdHasBeenSet = false;
126};
127
128} // namespace Model
129} // namespace CognitoIdentity
130} // namespace Aws
AWS_COGNITOIDENTITY_API LookupDeveloperIdentityResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
AWS_COGNITOIDENTITY_API LookupDeveloperIdentityResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
LookupDeveloperIdentityResult & WithRequestId(RequestIdT &&value)
LookupDeveloperIdentityResult & AddDeveloperUserIdentifierList(DeveloperUserIdentifierListT &&value)
LookupDeveloperIdentityResult & WithDeveloperUserIdentifierList(DeveloperUserIdentifierListT &&value)
const Aws::Vector< Aws::String > & GetDeveloperUserIdentifierList() const
void SetDeveloperUserIdentifierList(DeveloperUserIdentifierListT &&value)
AWS_COGNITOIDENTITY_API LookupDeveloperIdentityResult()=default
LookupDeveloperIdentityResult & WithIdentityId(IdentityIdT &&value)
LookupDeveloperIdentityResult & WithNextToken(NextTokenT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue