AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeInternetGatewaysRequest.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:
26 AWS_EC2_API DescribeInternetGatewaysRequest() = 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 "DescribeInternetGateways"; }
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
46 inline const Aws::String& GetNextToken() const { return m_nextToken; }
47 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
48 template<typename NextTokenT = Aws::String>
49 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
50 template<typename NextTokenT = Aws::String>
51 DescribeInternetGatewaysRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
53
55
61 inline int GetMaxResults() const { return m_maxResults; }
62 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
63 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
64 inline DescribeInternetGatewaysRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
66
68
74 inline bool GetDryRun() const { return m_dryRun; }
75 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
76 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
77 inline DescribeInternetGatewaysRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
79
81
85 inline const Aws::Vector<Aws::String>& GetInternetGatewayIds() const { return m_internetGatewayIds; }
86 inline bool InternetGatewayIdsHasBeenSet() const { return m_internetGatewayIdsHasBeenSet; }
87 template<typename InternetGatewayIdsT = Aws::Vector<Aws::String>>
88 void SetInternetGatewayIds(InternetGatewayIdsT&& value) { m_internetGatewayIdsHasBeenSet = true; m_internetGatewayIds = std::forward<InternetGatewayIdsT>(value); }
89 template<typename InternetGatewayIdsT = Aws::Vector<Aws::String>>
90 DescribeInternetGatewaysRequest& WithInternetGatewayIds(InternetGatewayIdsT&& value) { SetInternetGatewayIds(std::forward<InternetGatewayIdsT>(value)); return *this;}
91 template<typename InternetGatewayIdsT = Aws::String>
92 DescribeInternetGatewaysRequest& AddInternetGatewayIds(InternetGatewayIdsT&& value) { m_internetGatewayIdsHasBeenSet = true; m_internetGatewayIds.emplace_back(std::forward<InternetGatewayIdsT>(value)); return *this; }
94
96
113 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
114 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
115 template<typename FiltersT = Aws::Vector<Filter>>
116 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
117 template<typename FiltersT = Aws::Vector<Filter>>
118 DescribeInternetGatewaysRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
119 template<typename FiltersT = Filter>
120 DescribeInternetGatewaysRequest& AddFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters.emplace_back(std::forward<FiltersT>(value)); return *this; }
122 private:
123
124 Aws::String m_nextToken;
125 bool m_nextTokenHasBeenSet = false;
126
127 int m_maxResults{0};
128 bool m_maxResultsHasBeenSet = false;
129
130 bool m_dryRun{false};
131 bool m_dryRunHasBeenSet = false;
132
133 Aws::Vector<Aws::String> m_internetGatewayIds;
134 bool m_internetGatewayIdsHasBeenSet = false;
135
136 Aws::Vector<Filter> m_filters;
137 bool m_filtersHasBeenSet = false;
138 };
139
140} // namespace Model
141} // namespace EC2
142} // namespace Aws
DescribeInternetGatewaysRequest & WithNextToken(NextTokenT &&value)
DescribeInternetGatewaysRequest & WithFilters(FiltersT &&value)
DescribeInternetGatewaysRequest & AddFilters(FiltersT &&value)
DescribeInternetGatewaysRequest & WithDryRun(bool value)
AWS_EC2_API Aws::String SerializePayload() const override
DescribeInternetGatewaysRequest & AddInternetGatewayIds(InternetGatewayIdsT &&value)
const Aws::Vector< Aws::String > & GetInternetGatewayIds() const
DescribeInternetGatewaysRequest & WithInternetGatewayIds(InternetGatewayIdsT &&value)
DescribeInternetGatewaysRequest & WithMaxResults(int value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector