AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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:
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 inline void SetFilter(const Aws::Vector<Filter>& value) { m_filterHasBeenSet = true; m_filter = value; }
75 inline void SetFilter(Aws::Vector<Filter>&& value) { m_filterHasBeenSet = true; m_filter = std::move(value); }
76 inline DescribeNatGatewaysRequest& WithFilter(const Aws::Vector<Filter>& value) { SetFilter(value); return *this;}
77 inline DescribeNatGatewaysRequest& WithFilter(Aws::Vector<Filter>&& value) { SetFilter(std::move(value)); return *this;}
78 inline DescribeNatGatewaysRequest& AddFilter(const Filter& value) { m_filterHasBeenSet = true; m_filter.push_back(value); return *this; }
79 inline DescribeNatGatewaysRequest& AddFilter(Filter&& value) { m_filterHasBeenSet = true; m_filter.push_back(std::move(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 inline void SetNatGatewayIds(const Aws::Vector<Aws::String>& value) { m_natGatewayIdsHasBeenSet = true; m_natGatewayIds = value; }
102 inline void SetNatGatewayIds(Aws::Vector<Aws::String>&& value) { m_natGatewayIdsHasBeenSet = true; m_natGatewayIds = std::move(value); }
105 inline DescribeNatGatewaysRequest& AddNatGatewayIds(const Aws::String& value) { m_natGatewayIdsHasBeenSet = true; m_natGatewayIds.push_back(value); return *this; }
106 inline DescribeNatGatewaysRequest& AddNatGatewayIds(Aws::String&& value) { m_natGatewayIdsHasBeenSet = true; m_natGatewayIds.push_back(std::move(value)); return *this; }
107 inline DescribeNatGatewaysRequest& AddNatGatewayIds(const char* value) { m_natGatewayIdsHasBeenSet = true; m_natGatewayIds.push_back(value); return *this; }
109
111
115 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
116 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
117 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
118 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
119 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
120 inline DescribeNatGatewaysRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
121 inline DescribeNatGatewaysRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
122 inline DescribeNatGatewaysRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
124 private:
125
126 bool m_dryRun;
127 bool m_dryRunHasBeenSet = false;
128
129 Aws::Vector<Filter> m_filter;
130 bool m_filterHasBeenSet = false;
131
132 int m_maxResults;
133 bool m_maxResultsHasBeenSet = false;
134
135 Aws::Vector<Aws::String> m_natGatewayIds;
136 bool m_natGatewayIdsHasBeenSet = false;
137
138 Aws::String m_nextToken;
139 bool m_nextTokenHasBeenSet = false;
140 };
141
142} // namespace Model
143} // namespace EC2
144} // namespace Aws
DescribeNatGatewaysRequest & WithNextToken(Aws::String &&value)
void SetNatGatewayIds(const Aws::Vector< Aws::String > &value)
DescribeNatGatewaysRequest & AddFilter(Filter &&value)
const Aws::Vector< Filter > & GetFilter() const
DescribeNatGatewaysRequest & AddNatGatewayIds(Aws::String &&value)
DescribeNatGatewaysRequest & WithNatGatewayIds(const Aws::Vector< Aws::String > &value)
DescribeNatGatewaysRequest & WithFilter(const Aws::Vector< Filter > &value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeNatGatewaysRequest & AddNatGatewayIds(const char *value)
DescribeNatGatewaysRequest & WithNextToken(const char *value)
DescribeNatGatewaysRequest & WithNatGatewayIds(Aws::Vector< Aws::String > &&value)
virtual const char * GetServiceRequestName() const override
AWS_EC2_API Aws::String SerializePayload() const override
void SetNatGatewayIds(Aws::Vector< Aws::String > &&value)
DescribeNatGatewaysRequest & WithNextToken(const Aws::String &value)
const Aws::Vector< Aws::String > & GetNatGatewayIds() const
DescribeNatGatewaysRequest & WithFilter(Aws::Vector< Filter > &&value)
DescribeNatGatewaysRequest & AddNatGatewayIds(const Aws::String &value)
DescribeNatGatewaysRequest & WithDryRun(bool value)
DescribeNatGatewaysRequest & AddFilter(const Filter &value)
DescribeNatGatewaysRequest & WithMaxResults(int value)
void SetFilter(const Aws::Vector< Filter > &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector