1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #pragma once
7 #include <aws/appsync/AppSync_EXPORTS.h>
8 #include <aws/appsync/AppSyncRequest.h>
9 #include <aws/core/utils/memory/stl/AWSString.h>
10 #include <utility>
11 
12 namespace Aws
13 {
14 namespace Http
15 {
16     class URI;
17 } //namespace Http
18 namespace AppSync
19 {
20 namespace Model
21 {
22 
23   /**
24    */
25   class AWS_APPSYNC_API ListResolversRequest : public AppSyncRequest
26   {
27   public:
28     ListResolversRequest();
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.
GetServiceRequestName()34     inline virtual const char* GetServiceRequestName() const override { return "ListResolvers"; }
35 
36     Aws::String SerializePayload() const override;
37 
38     void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39 
40 
41     /**
42      * <p>The API ID.</p>
43      */
GetApiId()44     inline const Aws::String& GetApiId() const{ return m_apiId; }
45 
46     /**
47      * <p>The API ID.</p>
48      */
ApiIdHasBeenSet()49     inline bool ApiIdHasBeenSet() const { return m_apiIdHasBeenSet; }
50 
51     /**
52      * <p>The API ID.</p>
53      */
SetApiId(const Aws::String & value)54     inline void SetApiId(const Aws::String& value) { m_apiIdHasBeenSet = true; m_apiId = value; }
55 
56     /**
57      * <p>The API ID.</p>
58      */
SetApiId(Aws::String && value)59     inline void SetApiId(Aws::String&& value) { m_apiIdHasBeenSet = true; m_apiId = std::move(value); }
60 
61     /**
62      * <p>The API ID.</p>
63      */
SetApiId(const char * value)64     inline void SetApiId(const char* value) { m_apiIdHasBeenSet = true; m_apiId.assign(value); }
65 
66     /**
67      * <p>The API ID.</p>
68      */
WithApiId(const Aws::String & value)69     inline ListResolversRequest& WithApiId(const Aws::String& value) { SetApiId(value); return *this;}
70 
71     /**
72      * <p>The API ID.</p>
73      */
WithApiId(Aws::String && value)74     inline ListResolversRequest& WithApiId(Aws::String&& value) { SetApiId(std::move(value)); return *this;}
75 
76     /**
77      * <p>The API ID.</p>
78      */
WithApiId(const char * value)79     inline ListResolversRequest& WithApiId(const char* value) { SetApiId(value); return *this;}
80 
81 
82     /**
83      * <p>The type name.</p>
84      */
GetTypeName()85     inline const Aws::String& GetTypeName() const{ return m_typeName; }
86 
87     /**
88      * <p>The type name.</p>
89      */
TypeNameHasBeenSet()90     inline bool TypeNameHasBeenSet() const { return m_typeNameHasBeenSet; }
91 
92     /**
93      * <p>The type name.</p>
94      */
SetTypeName(const Aws::String & value)95     inline void SetTypeName(const Aws::String& value) { m_typeNameHasBeenSet = true; m_typeName = value; }
96 
97     /**
98      * <p>The type name.</p>
99      */
SetTypeName(Aws::String && value)100     inline void SetTypeName(Aws::String&& value) { m_typeNameHasBeenSet = true; m_typeName = std::move(value); }
101 
102     /**
103      * <p>The type name.</p>
104      */
SetTypeName(const char * value)105     inline void SetTypeName(const char* value) { m_typeNameHasBeenSet = true; m_typeName.assign(value); }
106 
107     /**
108      * <p>The type name.</p>
109      */
WithTypeName(const Aws::String & value)110     inline ListResolversRequest& WithTypeName(const Aws::String& value) { SetTypeName(value); return *this;}
111 
112     /**
113      * <p>The type name.</p>
114      */
WithTypeName(Aws::String && value)115     inline ListResolversRequest& WithTypeName(Aws::String&& value) { SetTypeName(std::move(value)); return *this;}
116 
117     /**
118      * <p>The type name.</p>
119      */
WithTypeName(const char * value)120     inline ListResolversRequest& WithTypeName(const char* value) { SetTypeName(value); return *this;}
121 
122 
123     /**
124      * <p>An identifier that was returned from the previous call to this operation,
125      * which can be used to return the next set of items in the list. </p>
126      */
GetNextToken()127     inline const Aws::String& GetNextToken() const{ return m_nextToken; }
128 
129     /**
130      * <p>An identifier that was returned from the previous call to this operation,
131      * which can be used to return the next set of items in the list. </p>
132      */
NextTokenHasBeenSet()133     inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
134 
135     /**
136      * <p>An identifier that was returned from the previous call to this operation,
137      * which can be used to return the next set of items in the list. </p>
138      */
SetNextToken(const Aws::String & value)139     inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
140 
141     /**
142      * <p>An identifier that was returned from the previous call to this operation,
143      * which can be used to return the next set of items in the list. </p>
144      */
SetNextToken(Aws::String && value)145     inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
146 
147     /**
148      * <p>An identifier that was returned from the previous call to this operation,
149      * which can be used to return the next set of items in the list. </p>
150      */
SetNextToken(const char * value)151     inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
152 
153     /**
154      * <p>An identifier that was returned from the previous call to this operation,
155      * which can be used to return the next set of items in the list. </p>
156      */
WithNextToken(const Aws::String & value)157     inline ListResolversRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
158 
159     /**
160      * <p>An identifier that was returned from the previous call to this operation,
161      * which can be used to return the next set of items in the list. </p>
162      */
WithNextToken(Aws::String && value)163     inline ListResolversRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
164 
165     /**
166      * <p>An identifier that was returned from the previous call to this operation,
167      * which can be used to return the next set of items in the list. </p>
168      */
WithNextToken(const char * value)169     inline ListResolversRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
170 
171 
172     /**
173      * <p>The maximum number of results you want the request to return.</p>
174      */
GetMaxResults()175     inline int GetMaxResults() const{ return m_maxResults; }
176 
177     /**
178      * <p>The maximum number of results you want the request to return.</p>
179      */
MaxResultsHasBeenSet()180     inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
181 
182     /**
183      * <p>The maximum number of results you want the request to return.</p>
184      */
SetMaxResults(int value)185     inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
186 
187     /**
188      * <p>The maximum number of results you want the request to return.</p>
189      */
WithMaxResults(int value)190     inline ListResolversRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
191 
192   private:
193 
194     Aws::String m_apiId;
195     bool m_apiIdHasBeenSet;
196 
197     Aws::String m_typeName;
198     bool m_typeNameHasBeenSet;
199 
200     Aws::String m_nextToken;
201     bool m_nextTokenHasBeenSet;
202 
203     int m_maxResults;
204     bool m_maxResultsHasBeenSet;
205   };
206 
207 } // namespace Model
208 } // namespace AppSync
209 } // namespace Aws
210