AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListKeysRequest.h
1
6#pragma once
7#include <aws/location/LocationService_EXPORTS.h>
8#include <aws/location/LocationServiceRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/location/model/ApiKeyFilter.h>
11#include <utility>
12
13namespace Aws
14{
15namespace LocationService
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_LOCATIONSERVICE_API ListKeysRequest();
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 "ListKeys"; }
32
33 AWS_LOCATIONSERVICE_API Aws::String SerializePayload() const override;
34
35
37
41 inline int GetMaxResults() const{ return m_maxResults; }
42 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
43 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
44 inline ListKeysRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
46
48
53 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
54 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
55 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
56 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
57 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
58 inline ListKeysRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
59 inline ListKeysRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
60 inline ListKeysRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
62
64
68 inline const ApiKeyFilter& GetFilter() const{ return m_filter; }
69 inline bool FilterHasBeenSet() const { return m_filterHasBeenSet; }
70 inline void SetFilter(const ApiKeyFilter& value) { m_filterHasBeenSet = true; m_filter = value; }
71 inline void SetFilter(ApiKeyFilter&& value) { m_filterHasBeenSet = true; m_filter = std::move(value); }
72 inline ListKeysRequest& WithFilter(const ApiKeyFilter& value) { SetFilter(value); return *this;}
73 inline ListKeysRequest& WithFilter(ApiKeyFilter&& value) { SetFilter(std::move(value)); return *this;}
75 private:
76
77 int m_maxResults;
78 bool m_maxResultsHasBeenSet = false;
79
80 Aws::String m_nextToken;
81 bool m_nextTokenHasBeenSet = false;
82
83 ApiKeyFilter m_filter;
84 bool m_filterHasBeenSet = false;
85 };
86
87} // namespace Model
88} // namespace LocationService
89} // namespace Aws
ListKeysRequest & WithMaxResults(int value)
virtual const char * GetServiceRequestName() const override
ListKeysRequest & WithNextToken(Aws::String &&value)
ListKeysRequest & WithFilter(const ApiKeyFilter &value)
ListKeysRequest & WithFilter(ApiKeyFilter &&value)
AWS_LOCATIONSERVICE_API Aws::String SerializePayload() const override
void SetNextToken(const Aws::String &value)
AWS_LOCATIONSERVICE_API ListKeysRequest()
ListKeysRequest & WithNextToken(const Aws::String &value)
ListKeysRequest & WithNextToken(const char *value)
void SetFilter(const ApiKeyFilter &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String