AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeSubnetsRequest.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 "DescribeSubnets"; }
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
106 inline const Aws::Vector<Filter>& GetFilters() const{ return m_filters; }
107 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
108 inline void SetFilters(const Aws::Vector<Filter>& value) { m_filtersHasBeenSet = true; m_filters = value; }
109 inline void SetFilters(Aws::Vector<Filter>&& value) { m_filtersHasBeenSet = true; m_filters = std::move(value); }
110 inline DescribeSubnetsRequest& WithFilters(const Aws::Vector<Filter>& value) { SetFilters(value); return *this;}
111 inline DescribeSubnetsRequest& WithFilters(Aws::Vector<Filter>&& value) { SetFilters(std::move(value)); return *this;}
112 inline DescribeSubnetsRequest& AddFilters(const Filter& value) { m_filtersHasBeenSet = true; m_filters.push_back(value); return *this; }
113 inline DescribeSubnetsRequest& AddFilters(Filter&& value) { m_filtersHasBeenSet = true; m_filters.push_back(std::move(value)); return *this; }
115
117
120 inline const Aws::Vector<Aws::String>& GetSubnetIds() const{ return m_subnetIds; }
121 inline bool SubnetIdsHasBeenSet() const { return m_subnetIdsHasBeenSet; }
122 inline void SetSubnetIds(const Aws::Vector<Aws::String>& value) { m_subnetIdsHasBeenSet = true; m_subnetIds = value; }
123 inline void SetSubnetIds(Aws::Vector<Aws::String>&& value) { m_subnetIdsHasBeenSet = true; m_subnetIds = std::move(value); }
124 inline DescribeSubnetsRequest& WithSubnetIds(const Aws::Vector<Aws::String>& value) { SetSubnetIds(value); return *this;}
125 inline DescribeSubnetsRequest& WithSubnetIds(Aws::Vector<Aws::String>&& value) { SetSubnetIds(std::move(value)); return *this;}
126 inline DescribeSubnetsRequest& AddSubnetIds(const Aws::String& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; }
127 inline DescribeSubnetsRequest& AddSubnetIds(Aws::String&& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(std::move(value)); return *this; }
128 inline DescribeSubnetsRequest& AddSubnetIds(const char* value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; }
130
132
136 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
137 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
138 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
139 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
140 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
141 inline DescribeSubnetsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
142 inline DescribeSubnetsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
143 inline DescribeSubnetsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
145
147
153 inline int GetMaxResults() const{ return m_maxResults; }
154 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
155 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
156 inline DescribeSubnetsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
158
160
166 inline bool GetDryRun() const{ return m_dryRun; }
167 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
168 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
169 inline DescribeSubnetsRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
171 private:
172
173 Aws::Vector<Filter> m_filters;
174 bool m_filtersHasBeenSet = false;
175
176 Aws::Vector<Aws::String> m_subnetIds;
177 bool m_subnetIdsHasBeenSet = false;
178
179 Aws::String m_nextToken;
180 bool m_nextTokenHasBeenSet = false;
181
182 int m_maxResults;
183 bool m_maxResultsHasBeenSet = false;
184
185 bool m_dryRun;
186 bool m_dryRunHasBeenSet = false;
187 };
188
189} // namespace Model
190} // namespace EC2
191} // namespace Aws
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeSubnetsRequest & WithFilters(Aws::Vector< Filter > &&value)
void SetFilters(Aws::Vector< Filter > &&value)
DescribeSubnetsRequest & WithDryRun(bool value)
DescribeSubnetsRequest & AddFilters(Filter &&value)
void SetNextToken(const Aws::String &value)
void SetFilters(const Aws::Vector< Filter > &value)
void SetSubnetIds(Aws::Vector< Aws::String > &&value)
virtual const char * GetServiceRequestName() const override
DescribeSubnetsRequest & AddSubnetIds(const Aws::String &value)
DescribeSubnetsRequest & AddSubnetIds(Aws::String &&value)
const Aws::Vector< Filter > & GetFilters() const
AWS_EC2_API Aws::String SerializePayload() const override
DescribeSubnetsRequest & WithNextToken(const Aws::String &value)
const Aws::Vector< Aws::String > & GetSubnetIds() const
DescribeSubnetsRequest & WithMaxResults(int value)
void SetSubnetIds(const Aws::Vector< Aws::String > &value)
DescribeSubnetsRequest & AddFilters(const Filter &value)
DescribeSubnetsRequest & WithSubnetIds(const Aws::Vector< Aws::String > &value)
DescribeSubnetsRequest & WithSubnetIds(Aws::Vector< Aws::String > &&value)
DescribeSubnetsRequest & WithNextToken(Aws::String &&value)
DescribeSubnetsRequest & WithFilters(const Aws::Vector< Filter > &value)
DescribeSubnetsRequest & WithNextToken(const char *value)
DescribeSubnetsRequest & AddSubnetIds(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector