AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
ListFirewallPoliciesRequest.h
Go to the documentation of this file.
1
6#pragma once
10#include <utility>
11
12namespace Aws
13{
14namespace NetworkFirewall
15{
16namespace Model
17{
18
22 {
23 public:
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "ListFirewallPolicies"; }
31
33
35
36
44 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
45
53 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
54
62 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
63
71 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
72
80 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
81
89 inline ListFirewallPoliciesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
90
98 inline ListFirewallPoliciesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
99
107 inline ListFirewallPoliciesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
108
109
116 inline int GetMaxResults() const{ return m_maxResults; }
117
124 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
125
132 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
133
140 inline ListFirewallPoliciesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
141
142 private:
143
144 Aws::String m_nextToken;
145 bool m_nextTokenHasBeenSet = false;
146
147 int m_maxResults;
148 bool m_maxResultsHasBeenSet = false;
149 };
150
151} // namespace Model
152} // namespace NetworkFirewall
153} // namespace Aws
#define AWS_NETWORKFIREWALL_API
AWS_NETWORKFIREWALL_API Aws::String SerializePayload() const override
AWS_NETWORKFIREWALL_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
ListFirewallPoliciesRequest & WithNextToken(Aws::String &&value)
ListFirewallPoliciesRequest & WithNextToken(const char *value)
ListFirewallPoliciesRequest & WithNextToken(const Aws::String &value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String