AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeIpv6PoolsRequest.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/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.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 "DescribeIpv6Pools"; }
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
45 inline const Aws::Vector<Aws::String>& GetPoolIds() const{ return m_poolIds; }
46 inline bool PoolIdsHasBeenSet() const { return m_poolIdsHasBeenSet; }
47 inline void SetPoolIds(const Aws::Vector<Aws::String>& value) { m_poolIdsHasBeenSet = true; m_poolIds = value; }
48 inline void SetPoolIds(Aws::Vector<Aws::String>&& value) { m_poolIdsHasBeenSet = true; m_poolIds = std::move(value); }
49 inline DescribeIpv6PoolsRequest& WithPoolIds(const Aws::Vector<Aws::String>& value) { SetPoolIds(value); return *this;}
50 inline DescribeIpv6PoolsRequest& WithPoolIds(Aws::Vector<Aws::String>&& value) { SetPoolIds(std::move(value)); return *this;}
51 inline DescribeIpv6PoolsRequest& AddPoolIds(const Aws::String& value) { m_poolIdsHasBeenSet = true; m_poolIds.push_back(value); return *this; }
52 inline DescribeIpv6PoolsRequest& AddPoolIds(Aws::String&& value) { m_poolIdsHasBeenSet = true; m_poolIds.push_back(std::move(value)); return *this; }
53 inline DescribeIpv6PoolsRequest& AddPoolIds(const char* value) { m_poolIdsHasBeenSet = true; m_poolIds.push_back(value); return *this; }
55
57
60 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
61 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
62 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
63 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
64 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
65 inline DescribeIpv6PoolsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
66 inline DescribeIpv6PoolsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
67 inline DescribeIpv6PoolsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
69
71
76 inline int GetMaxResults() const{ return m_maxResults; }
77 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
78 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
79 inline DescribeIpv6PoolsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
81
83
89 inline bool GetDryRun() const{ return m_dryRun; }
90 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
91 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
92 inline DescribeIpv6PoolsRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
94
96
107 inline const Aws::Vector<Filter>& GetFilters() const{ return m_filters; }
108 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
109 inline void SetFilters(const Aws::Vector<Filter>& value) { m_filtersHasBeenSet = true; m_filters = value; }
110 inline void SetFilters(Aws::Vector<Filter>&& value) { m_filtersHasBeenSet = true; m_filters = std::move(value); }
111 inline DescribeIpv6PoolsRequest& WithFilters(const Aws::Vector<Filter>& value) { SetFilters(value); return *this;}
112 inline DescribeIpv6PoolsRequest& WithFilters(Aws::Vector<Filter>&& value) { SetFilters(std::move(value)); return *this;}
113 inline DescribeIpv6PoolsRequest& AddFilters(const Filter& value) { m_filtersHasBeenSet = true; m_filters.push_back(value); return *this; }
114 inline DescribeIpv6PoolsRequest& AddFilters(Filter&& value) { m_filtersHasBeenSet = true; m_filters.push_back(std::move(value)); return *this; }
116 private:
117
118 Aws::Vector<Aws::String> m_poolIds;
119 bool m_poolIdsHasBeenSet = false;
120
121 Aws::String m_nextToken;
122 bool m_nextTokenHasBeenSet = false;
123
124 int m_maxResults;
125 bool m_maxResultsHasBeenSet = false;
126
127 bool m_dryRun;
128 bool m_dryRunHasBeenSet = false;
129
130 Aws::Vector<Filter> m_filters;
131 bool m_filtersHasBeenSet = false;
132 };
133
134} // namespace Model
135} // namespace EC2
136} // namespace Aws
DescribeIpv6PoolsRequest & WithNextToken(const Aws::String &value)
DescribeIpv6PoolsRequest & WithFilters(Aws::Vector< Filter > &&value)
DescribeIpv6PoolsRequest & WithNextToken(const char *value)
DescribeIpv6PoolsRequest & AddPoolIds(const char *value)
void SetFilters(const Aws::Vector< Filter > &value)
void SetPoolIds(Aws::Vector< Aws::String > &&value)
DescribeIpv6PoolsRequest & WithFilters(const Aws::Vector< Filter > &value)
void SetPoolIds(const Aws::Vector< Aws::String > &value)
DescribeIpv6PoolsRequest & AddPoolIds(Aws::String &&value)
const Aws::Vector< Filter > & GetFilters() const
virtual const char * GetServiceRequestName() const override
void SetFilters(Aws::Vector< Filter > &&value)
DescribeIpv6PoolsRequest & AddFilters(const Filter &value)
const Aws::Vector< Aws::String > & GetPoolIds() const
AWS_EC2_API Aws::String SerializePayload() const override
DescribeIpv6PoolsRequest & WithPoolIds(const Aws::Vector< Aws::String > &value)
DescribeIpv6PoolsRequest & AddPoolIds(const Aws::String &value)
DescribeIpv6PoolsRequest & WithMaxResults(int value)
DescribeIpv6PoolsRequest & AddFilters(Filter &&value)
DescribeIpv6PoolsRequest & WithDryRun(bool value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeIpv6PoolsRequest & WithPoolIds(Aws::Vector< Aws::String > &&value)
DescribeIpv6PoolsRequest & WithNextToken(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector