AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
LookupDeveloperIdentityRequest.h
1
6#pragma once
7#include <aws/cognito-identity/CognitoIdentity_EXPORTS.h>
8#include <aws/cognito-identity/CognitoIdentityRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace CognitoIdentity
15{
16namespace Model
17{
18
26 {
27 public:
28 AWS_COGNITOIDENTITY_API LookupDeveloperIdentityRequest() = default;
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 "LookupDeveloperIdentity"; }
35
36 AWS_COGNITOIDENTITY_API Aws::String SerializePayload() const override;
37
38 AWS_COGNITOIDENTITY_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
39
40
42
45 inline const Aws::String& GetIdentityPoolId() const { return m_identityPoolId; }
46 inline bool IdentityPoolIdHasBeenSet() const { return m_identityPoolIdHasBeenSet; }
47 template<typename IdentityPoolIdT = Aws::String>
48 void SetIdentityPoolId(IdentityPoolIdT&& value) { m_identityPoolIdHasBeenSet = true; m_identityPoolId = std::forward<IdentityPoolIdT>(value); }
49 template<typename IdentityPoolIdT = Aws::String>
50 LookupDeveloperIdentityRequest& WithIdentityPoolId(IdentityPoolIdT&& value) { SetIdentityPoolId(std::forward<IdentityPoolIdT>(value)); return *this;}
52
54
57 inline const Aws::String& GetIdentityId() const { return m_identityId; }
58 inline bool IdentityIdHasBeenSet() const { return m_identityIdHasBeenSet; }
59 template<typename IdentityIdT = Aws::String>
60 void SetIdentityId(IdentityIdT&& value) { m_identityIdHasBeenSet = true; m_identityId = std::forward<IdentityIdT>(value); }
61 template<typename IdentityIdT = Aws::String>
62 LookupDeveloperIdentityRequest& WithIdentityId(IdentityIdT&& value) { SetIdentityId(std::forward<IdentityIdT>(value)); return *this;}
64
66
71 inline const Aws::String& GetDeveloperUserIdentifier() const { return m_developerUserIdentifier; }
72 inline bool DeveloperUserIdentifierHasBeenSet() const { return m_developerUserIdentifierHasBeenSet; }
73 template<typename DeveloperUserIdentifierT = Aws::String>
74 void SetDeveloperUserIdentifier(DeveloperUserIdentifierT&& value) { m_developerUserIdentifierHasBeenSet = true; m_developerUserIdentifier = std::forward<DeveloperUserIdentifierT>(value); }
75 template<typename DeveloperUserIdentifierT = Aws::String>
76 LookupDeveloperIdentityRequest& WithDeveloperUserIdentifier(DeveloperUserIdentifierT&& value) { SetDeveloperUserIdentifier(std::forward<DeveloperUserIdentifierT>(value)); return *this;}
78
80
83 inline int GetMaxResults() const { return m_maxResults; }
84 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
85 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
86 inline LookupDeveloperIdentityRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
88
90
98 inline const Aws::String& GetNextToken() const { return m_nextToken; }
99 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
100 template<typename NextTokenT = Aws::String>
101 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
102 template<typename NextTokenT = Aws::String>
103 LookupDeveloperIdentityRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
105 private:
106
107 Aws::String m_identityPoolId;
108 bool m_identityPoolIdHasBeenSet = false;
109
110 Aws::String m_identityId;
111 bool m_identityIdHasBeenSet = false;
112
113 Aws::String m_developerUserIdentifier;
114 bool m_developerUserIdentifierHasBeenSet = false;
115
116 int m_maxResults{0};
117 bool m_maxResultsHasBeenSet = false;
118
119 Aws::String m_nextToken;
120 bool m_nextTokenHasBeenSet = false;
121 };
122
123} // namespace Model
124} // namespace CognitoIdentity
125} // 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