AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetDedicatedIpsRequest.h
1
6#pragma once
7#include <aws/sesv2/SESV2_EXPORTS.h>
8#include <aws/sesv2/SESV2Request.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace SESV2
19{
20namespace Model
21{
22
30 {
31 public:
32 AWS_SESV2_API GetDedicatedIpsRequest();
33
34 // Service request name is the Operation name which will send this request out,
35 // each operation should has unique request name, so that we can get operation's name from this request.
36 // Note: this is not true for response, multiple operations may have the same response name,
37 // so we can not get operation's name from response.
38 inline virtual const char* GetServiceRequestName() const override { return "GetDedicatedIps"; }
39
40 AWS_SESV2_API Aws::String SerializePayload() const override;
41
42 AWS_SESV2_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
43
44
46
49 inline const Aws::String& GetPoolName() const{ return m_poolName; }
50 inline bool PoolNameHasBeenSet() const { return m_poolNameHasBeenSet; }
51 inline void SetPoolName(const Aws::String& value) { m_poolNameHasBeenSet = true; m_poolName = value; }
52 inline void SetPoolName(Aws::String&& value) { m_poolNameHasBeenSet = true; m_poolName = std::move(value); }
53 inline void SetPoolName(const char* value) { m_poolNameHasBeenSet = true; m_poolName.assign(value); }
54 inline GetDedicatedIpsRequest& WithPoolName(const Aws::String& value) { SetPoolName(value); return *this;}
55 inline GetDedicatedIpsRequest& WithPoolName(Aws::String&& value) { SetPoolName(std::move(value)); return *this;}
56 inline GetDedicatedIpsRequest& WithPoolName(const char* value) { SetPoolName(value); return *this;}
58
60
64 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
65 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
66 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
67 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
68 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
69 inline GetDedicatedIpsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
70 inline GetDedicatedIpsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
71 inline GetDedicatedIpsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
73
75
82 inline int GetPageSize() const{ return m_pageSize; }
83 inline bool PageSizeHasBeenSet() const { return m_pageSizeHasBeenSet; }
84 inline void SetPageSize(int value) { m_pageSizeHasBeenSet = true; m_pageSize = value; }
85 inline GetDedicatedIpsRequest& WithPageSize(int value) { SetPageSize(value); return *this;}
87 private:
88
89 Aws::String m_poolName;
90 bool m_poolNameHasBeenSet = false;
91
92 Aws::String m_nextToken;
93 bool m_nextTokenHasBeenSet = false;
94
95 int m_pageSize;
96 bool m_pageSizeHasBeenSet = false;
97 };
98
99} // namespace Model
100} // namespace SESV2
101} // namespace Aws
GetDedicatedIpsRequest & WithNextToken(const Aws::String &value)
GetDedicatedIpsRequest & WithNextToken(Aws::String &&value)
GetDedicatedIpsRequest & WithNextToken(const char *value)
GetDedicatedIpsRequest & WithPoolName(const char *value)
GetDedicatedIpsRequest & WithPoolName(Aws::String &&value)
AWS_SESV2_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
GetDedicatedIpsRequest & WithPoolName(const Aws::String &value)
AWS_SESV2_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
GetDedicatedIpsRequest & WithPageSize(int value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String