AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetIpamPoolAllocationsRequest.h
1
6#pragma once
7#include <aws/ec2/EC2_EXPORTS.h>
8#include <aws/ec2/EC2Request.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/ec2/model/Filter.h>
12#include <utility>
13
14namespace Aws
15{
16namespace EC2
17{
18namespace Model
19{
20
24 {
25 public:
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "GetIpamPoolAllocations"; }
33
34 AWS_EC2_API Aws::String SerializePayload() const override;
35
36 protected:
37 AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
38
39 public:
40
42
48 inline bool GetDryRun() const{ return m_dryRun; }
49 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
50 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
51 inline GetIpamPoolAllocationsRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
53
55
58 inline const Aws::String& GetIpamPoolId() const{ return m_ipamPoolId; }
59 inline bool IpamPoolIdHasBeenSet() const { return m_ipamPoolIdHasBeenSet; }
60 inline void SetIpamPoolId(const Aws::String& value) { m_ipamPoolIdHasBeenSet = true; m_ipamPoolId = value; }
61 inline void SetIpamPoolId(Aws::String&& value) { m_ipamPoolIdHasBeenSet = true; m_ipamPoolId = std::move(value); }
62 inline void SetIpamPoolId(const char* value) { m_ipamPoolIdHasBeenSet = true; m_ipamPoolId.assign(value); }
63 inline GetIpamPoolAllocationsRequest& WithIpamPoolId(const Aws::String& value) { SetIpamPoolId(value); return *this;}
64 inline GetIpamPoolAllocationsRequest& WithIpamPoolId(Aws::String&& value) { SetIpamPoolId(std::move(value)); return *this;}
65 inline GetIpamPoolAllocationsRequest& WithIpamPoolId(const char* value) { SetIpamPoolId(value); return *this;}
67
69
72 inline const Aws::String& GetIpamPoolAllocationId() const{ return m_ipamPoolAllocationId; }
73 inline bool IpamPoolAllocationIdHasBeenSet() const { return m_ipamPoolAllocationIdHasBeenSet; }
74 inline void SetIpamPoolAllocationId(const Aws::String& value) { m_ipamPoolAllocationIdHasBeenSet = true; m_ipamPoolAllocationId = value; }
75 inline void SetIpamPoolAllocationId(Aws::String&& value) { m_ipamPoolAllocationIdHasBeenSet = true; m_ipamPoolAllocationId = std::move(value); }
76 inline void SetIpamPoolAllocationId(const char* value) { m_ipamPoolAllocationIdHasBeenSet = true; m_ipamPoolAllocationId.assign(value); }
79 inline GetIpamPoolAllocationsRequest& WithIpamPoolAllocationId(const char* value) { SetIpamPoolAllocationId(value); return *this;}
81
83
89 inline const Aws::Vector<Filter>& GetFilters() const{ return m_filters; }
90 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
91 inline void SetFilters(const Aws::Vector<Filter>& value) { m_filtersHasBeenSet = true; m_filters = value; }
92 inline void SetFilters(Aws::Vector<Filter>&& value) { m_filtersHasBeenSet = true; m_filters = std::move(value); }
93 inline GetIpamPoolAllocationsRequest& WithFilters(const Aws::Vector<Filter>& value) { SetFilters(value); return *this;}
94 inline GetIpamPoolAllocationsRequest& WithFilters(Aws::Vector<Filter>&& value) { SetFilters(std::move(value)); return *this;}
95 inline GetIpamPoolAllocationsRequest& AddFilters(const Filter& value) { m_filtersHasBeenSet = true; m_filters.push_back(value); return *this; }
96 inline GetIpamPoolAllocationsRequest& AddFilters(Filter&& value) { m_filtersHasBeenSet = true; m_filters.push_back(std::move(value)); return *this; }
98
100
103 inline int GetMaxResults() const{ return m_maxResults; }
104 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
105 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
106 inline GetIpamPoolAllocationsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
108
110
113 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
114 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
115 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
116 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
117 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
118 inline GetIpamPoolAllocationsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
119 inline GetIpamPoolAllocationsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
120 inline GetIpamPoolAllocationsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
122 private:
123
124 bool m_dryRun;
125 bool m_dryRunHasBeenSet = false;
126
127 Aws::String m_ipamPoolId;
128 bool m_ipamPoolIdHasBeenSet = false;
129
130 Aws::String m_ipamPoolAllocationId;
131 bool m_ipamPoolAllocationIdHasBeenSet = false;
132
133 Aws::Vector<Filter> m_filters;
134 bool m_filtersHasBeenSet = false;
135
136 int m_maxResults;
137 bool m_maxResultsHasBeenSet = false;
138
139 Aws::String m_nextToken;
140 bool m_nextTokenHasBeenSet = false;
141 };
142
143} // namespace Model
144} // namespace EC2
145} // namespace Aws
virtual const char * GetServiceRequestName() const override
GetIpamPoolAllocationsRequest & WithFilters(const Aws::Vector< Filter > &value)
GetIpamPoolAllocationsRequest & WithIpamPoolAllocationId(const Aws::String &value)
GetIpamPoolAllocationsRequest & WithNextToken(Aws::String &&value)
GetIpamPoolAllocationsRequest & WithIpamPoolId(const Aws::String &value)
GetIpamPoolAllocationsRequest & WithIpamPoolId(Aws::String &&value)
GetIpamPoolAllocationsRequest & WithIpamPoolAllocationId(const char *value)
GetIpamPoolAllocationsRequest & WithDryRun(bool value)
GetIpamPoolAllocationsRequest & WithIpamPoolId(const char *value)
GetIpamPoolAllocationsRequest & WithFilters(Aws::Vector< Filter > &&value)
GetIpamPoolAllocationsRequest & WithIpamPoolAllocationId(Aws::String &&value)
GetIpamPoolAllocationsRequest & WithNextToken(const char *value)
GetIpamPoolAllocationsRequest & WithMaxResults(int value)
AWS_EC2_API Aws::String SerializePayload() const override
GetIpamPoolAllocationsRequest & AddFilters(Filter &&value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
GetIpamPoolAllocationsRequest & AddFilters(const Filter &value)
GetIpamPoolAllocationsRequest & WithNextToken(const Aws::String &value)
void SetFilters(const Aws::Vector< Filter > &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector