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 ListApiKeysRequest : public AppSyncRequest
26   {
27   public:
28     ListApiKeysRequest();
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 "ListApiKeys"; }
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 ListApiKeysRequest& WithApiId(const Aws::String& value) { SetApiId(value); return *this;}
70 
71     /**
72      * <p>The API ID.</p>
73      */
WithApiId(Aws::String && value)74     inline ListApiKeysRequest& 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 ListApiKeysRequest& WithApiId(const char* value) { SetApiId(value); return *this;}
80 
81 
82     /**
83      * <p>An identifier that was returned from the previous call to this operation,
84      * which can be used to return the next set of items in the list.</p>
85      */
GetNextToken()86     inline const Aws::String& GetNextToken() const{ return m_nextToken; }
87 
88     /**
89      * <p>An identifier that was returned from the previous call to this operation,
90      * which can be used to return the next set of items in the list.</p>
91      */
NextTokenHasBeenSet()92     inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
93 
94     /**
95      * <p>An identifier that was returned from the previous call to this operation,
96      * which can be used to return the next set of items in the list.</p>
97      */
SetNextToken(const Aws::String & value)98     inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
99 
100     /**
101      * <p>An identifier that was returned from the previous call to this operation,
102      * which can be used to return the next set of items in the list.</p>
103      */
SetNextToken(Aws::String && value)104     inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
105 
106     /**
107      * <p>An identifier that was returned from the previous call to this operation,
108      * which can be used to return the next set of items in the list.</p>
109      */
SetNextToken(const char * value)110     inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
111 
112     /**
113      * <p>An identifier that was returned from the previous call to this operation,
114      * which can be used to return the next set of items in the list.</p>
115      */
WithNextToken(const Aws::String & value)116     inline ListApiKeysRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
117 
118     /**
119      * <p>An identifier that was returned from the previous call to this operation,
120      * which can be used to return the next set of items in the list.</p>
121      */
WithNextToken(Aws::String && value)122     inline ListApiKeysRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
123 
124     /**
125      * <p>An identifier that was returned from the previous call to this operation,
126      * which can be used to return the next set of items in the list.</p>
127      */
WithNextToken(const char * value)128     inline ListApiKeysRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
129 
130 
131     /**
132      * <p>The maximum number of results you want the request to return.</p>
133      */
GetMaxResults()134     inline int GetMaxResults() const{ return m_maxResults; }
135 
136     /**
137      * <p>The maximum number of results you want the request to return.</p>
138      */
MaxResultsHasBeenSet()139     inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
140 
141     /**
142      * <p>The maximum number of results you want the request to return.</p>
143      */
SetMaxResults(int value)144     inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
145 
146     /**
147      * <p>The maximum number of results you want the request to return.</p>
148      */
WithMaxResults(int value)149     inline ListApiKeysRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
150 
151   private:
152 
153     Aws::String m_apiId;
154     bool m_apiIdHasBeenSet;
155 
156     Aws::String m_nextToken;
157     bool m_nextTokenHasBeenSet;
158 
159     int m_maxResults;
160     bool m_maxResultsHasBeenSet;
161   };
162 
163 } // namespace Model
164 } // namespace AppSync
165 } // namespace Aws
166