AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeCoipPoolsRequest.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:
26 AWS_EC2_API DescribeCoipPoolsRequest() = default;
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 "DescribeCoipPools"; }
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 template<typename PoolIdsT = Aws::Vector<Aws::String>>
48 void SetPoolIds(PoolIdsT&& value) { m_poolIdsHasBeenSet = true; m_poolIds = std::forward<PoolIdsT>(value); }
49 template<typename PoolIdsT = Aws::Vector<Aws::String>>
50 DescribeCoipPoolsRequest& WithPoolIds(PoolIdsT&& value) { SetPoolIds(std::forward<PoolIdsT>(value)); return *this;}
51 template<typename PoolIdsT = Aws::String>
52 DescribeCoipPoolsRequest& AddPoolIds(PoolIdsT&& value) { m_poolIdsHasBeenSet = true; m_poolIds.emplace_back(std::forward<PoolIdsT>(value)); return *this; }
54
56
62 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
63 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
64 template<typename FiltersT = Aws::Vector<Filter>>
65 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
66 template<typename FiltersT = Aws::Vector<Filter>>
67 DescribeCoipPoolsRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
68 template<typename FiltersT = Filter>
69 DescribeCoipPoolsRequest& AddFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters.emplace_back(std::forward<FiltersT>(value)); return *this; }
71
73
78 inline int GetMaxResults() const { return m_maxResults; }
79 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
80 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
81 inline DescribeCoipPoolsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
83
85
88 inline const Aws::String& GetNextToken() const { return m_nextToken; }
89 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
90 template<typename NextTokenT = Aws::String>
91 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
92 template<typename NextTokenT = Aws::String>
93 DescribeCoipPoolsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
95
97
103 inline bool GetDryRun() const { return m_dryRun; }
104 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
105 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
106 inline DescribeCoipPoolsRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
108 private:
109
110 Aws::Vector<Aws::String> m_poolIds;
111 bool m_poolIdsHasBeenSet = false;
112
113 Aws::Vector<Filter> m_filters;
114 bool m_filtersHasBeenSet = false;
115
116 int m_maxResults{0};
117 bool m_maxResultsHasBeenSet = false;
118
119 Aws::String m_nextToken;
120 bool m_nextTokenHasBeenSet = false;
121
122 bool m_dryRun{false};
123 bool m_dryRunHasBeenSet = false;
124 };
125
126} // namespace Model
127} // namespace EC2
128} // namespace Aws
const Aws::Vector< Filter > & GetFilters() const
DescribeCoipPoolsRequest & AddPoolIds(PoolIdsT &&value)
AWS_EC2_API DescribeCoipPoolsRequest()=default
const Aws::Vector< Aws::String > & GetPoolIds() const
DescribeCoipPoolsRequest & WithPoolIds(PoolIdsT &&value)
AWS_EC2_API Aws::String SerializePayload() const override
DescribeCoipPoolsRequest & AddFilters(FiltersT &&value)
DescribeCoipPoolsRequest & WithMaxResults(int value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
virtual const char * GetServiceRequestName() const override
DescribeCoipPoolsRequest & WithDryRun(bool value)
DescribeCoipPoolsRequest & WithNextToken(NextTokenT &&value)
DescribeCoipPoolsRequest & WithFilters(FiltersT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector