AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeNatGatewaysRequest.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 DescribeNatGatewaysRequest() = 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 "DescribeNatGateways"; }
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 DescribeNatGatewaysRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
53
55
72 inline const Aws::Vector<Filter>& GetFilter() const { return m_filter; }
73 inline bool FilterHasBeenSet() const { return m_filterHasBeenSet; }
74 template<typename FilterT = Aws::Vector<Filter>>
75 void SetFilter(FilterT&& value) { m_filterHasBeenSet = true; m_filter = std::forward<FilterT>(value); }
76 template<typename FilterT = Aws::Vector<Filter>>
77 DescribeNatGatewaysRequest& WithFilter(FilterT&& value) { SetFilter(std::forward<FilterT>(value)); return *this;}
78 template<typename FilterT = Filter>
79 DescribeNatGatewaysRequest& AddFilter(FilterT&& value) { m_filterHasBeenSet = true; m_filter.emplace_back(std::forward<FilterT>(value)); return *this; }
81
83
89 inline int GetMaxResults() const { return m_maxResults; }
90 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
91 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
92 inline DescribeNatGatewaysRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
94
96
99 inline const Aws::Vector<Aws::String>& GetNatGatewayIds() const { return m_natGatewayIds; }
100 inline bool NatGatewayIdsHasBeenSet() const { return m_natGatewayIdsHasBeenSet; }
101 template<typename NatGatewayIdsT = Aws::Vector<Aws::String>>
102 void SetNatGatewayIds(NatGatewayIdsT&& value) { m_natGatewayIdsHasBeenSet = true; m_natGatewayIds = std::forward<NatGatewayIdsT>(value); }
103 template<typename NatGatewayIdsT = Aws::Vector<Aws::String>>
104 DescribeNatGatewaysRequest& WithNatGatewayIds(NatGatewayIdsT&& value) { SetNatGatewayIds(std::forward<NatGatewayIdsT>(value)); return *this;}
105 template<typename NatGatewayIdsT = Aws::String>
106 DescribeNatGatewaysRequest& AddNatGatewayIds(NatGatewayIdsT&& value) { m_natGatewayIdsHasBeenSet = true; m_natGatewayIds.emplace_back(std::forward<NatGatewayIdsT>(value)); return *this; }
108
110
114 inline const Aws::String& GetNextToken() const { return m_nextToken; }
115 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
116 template<typename NextTokenT = Aws::String>
117 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
118 template<typename NextTokenT = Aws::String>
119 DescribeNatGatewaysRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
121 private:
122
123 bool m_dryRun{false};
124 bool m_dryRunHasBeenSet = false;
125
126 Aws::Vector<Filter> m_filter;
127 bool m_filterHasBeenSet = false;
128
129 int m_maxResults{0};
130 bool m_maxResultsHasBeenSet = false;
131
132 Aws::Vector<Aws::String> m_natGatewayIds;
133 bool m_natGatewayIdsHasBeenSet = false;
134
135 Aws::String m_nextToken;
136 bool m_nextTokenHasBeenSet = false;
137 };
138
139} // namespace Model
140} // namespace EC2
141} // namespace Aws
const Aws::Vector< Filter > & GetFilter() const
DescribeNatGatewaysRequest & WithNatGatewayIds(NatGatewayIdsT &&value)
DescribeNatGatewaysRequest & AddFilter(FilterT &&value)
DescribeNatGatewaysRequest & WithNextToken(NextTokenT &&value)
DescribeNatGatewaysRequest & WithFilter(FilterT &&value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeNatGatewaysRequest & AddNatGatewayIds(NatGatewayIdsT &&value)
virtual const char * GetServiceRequestName() const override
AWS_EC2_API Aws::String SerializePayload() const override
const Aws::Vector< Aws::String > & GetNatGatewayIds() const
DescribeNatGatewaysRequest & WithDryRun(bool value)
DescribeNatGatewaysRequest & WithMaxResults(int value)
AWS_EC2_API DescribeNatGatewaysRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector