AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeLocalGatewayRouteTablesRequest.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 "DescribeLocalGatewayRouteTables"; }
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>& GetLocalGatewayRouteTableIds() const{ return m_localGatewayRouteTableIds; }
46 inline bool LocalGatewayRouteTableIdsHasBeenSet() const { return m_localGatewayRouteTableIdsHasBeenSet; }
47 inline void SetLocalGatewayRouteTableIds(const Aws::Vector<Aws::String>& value) { m_localGatewayRouteTableIdsHasBeenSet = true; m_localGatewayRouteTableIds = value; }
48 inline void SetLocalGatewayRouteTableIds(Aws::Vector<Aws::String>&& value) { m_localGatewayRouteTableIdsHasBeenSet = true; m_localGatewayRouteTableIds = std::move(value); }
51 inline DescribeLocalGatewayRouteTablesRequest& AddLocalGatewayRouteTableIds(const Aws::String& value) { m_localGatewayRouteTableIdsHasBeenSet = true; m_localGatewayRouteTableIds.push_back(value); return *this; }
52 inline DescribeLocalGatewayRouteTablesRequest& AddLocalGatewayRouteTableIds(Aws::String&& value) { m_localGatewayRouteTableIdsHasBeenSet = true; m_localGatewayRouteTableIds.push_back(std::move(value)); return *this; }
53 inline DescribeLocalGatewayRouteTablesRequest& AddLocalGatewayRouteTableIds(const char* value) { m_localGatewayRouteTableIdsHasBeenSet = true; m_localGatewayRouteTableIds.push_back(value); return *this; }
55
57
69 inline const Aws::Vector<Filter>& GetFilters() const{ return m_filters; }
70 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
71 inline void SetFilters(const Aws::Vector<Filter>& value) { m_filtersHasBeenSet = true; m_filters = value; }
72 inline void SetFilters(Aws::Vector<Filter>&& value) { m_filtersHasBeenSet = true; m_filters = std::move(value); }
74 inline DescribeLocalGatewayRouteTablesRequest& WithFilters(Aws::Vector<Filter>&& value) { SetFilters(std::move(value)); return *this;}
75 inline DescribeLocalGatewayRouteTablesRequest& AddFilters(const Filter& value) { m_filtersHasBeenSet = true; m_filters.push_back(value); return *this; }
76 inline DescribeLocalGatewayRouteTablesRequest& AddFilters(Filter&& value) { m_filtersHasBeenSet = true; m_filters.push_back(std::move(value)); return *this; }
78
80
85 inline int GetMaxResults() const{ return m_maxResults; }
86 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
87 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
88 inline DescribeLocalGatewayRouteTablesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
90
92
95 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
96 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
97 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
98 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
99 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
101 inline DescribeLocalGatewayRouteTablesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
102 inline DescribeLocalGatewayRouteTablesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
104
106
112 inline bool GetDryRun() const{ return m_dryRun; }
113 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
114 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
115 inline DescribeLocalGatewayRouteTablesRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
117 private:
118
119 Aws::Vector<Aws::String> m_localGatewayRouteTableIds;
120 bool m_localGatewayRouteTableIdsHasBeenSet = false;
121
122 Aws::Vector<Filter> m_filters;
123 bool m_filtersHasBeenSet = false;
124
125 int m_maxResults;
126 bool m_maxResultsHasBeenSet = false;
127
128 Aws::String m_nextToken;
129 bool m_nextTokenHasBeenSet = false;
130
131 bool m_dryRun;
132 bool m_dryRunHasBeenSet = false;
133 };
134
135} // namespace Model
136} // namespace EC2
137} // namespace Aws
DescribeLocalGatewayRouteTablesRequest & WithFilters(Aws::Vector< Filter > &&value)
DescribeLocalGatewayRouteTablesRequest & WithLocalGatewayRouteTableIds(Aws::Vector< Aws::String > &&value)
DescribeLocalGatewayRouteTablesRequest & AddLocalGatewayRouteTableIds(const char *value)
DescribeLocalGatewayRouteTablesRequest & WithNextToken(const Aws::String &value)
DescribeLocalGatewayRouteTablesRequest & WithLocalGatewayRouteTableIds(const Aws::Vector< Aws::String > &value)
DescribeLocalGatewayRouteTablesRequest & WithDryRun(bool value)
DescribeLocalGatewayRouteTablesRequest & WithNextToken(const char *value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeLocalGatewayRouteTablesRequest & WithMaxResults(int value)
DescribeLocalGatewayRouteTablesRequest & AddLocalGatewayRouteTableIds(const Aws::String &value)
DescribeLocalGatewayRouteTablesRequest & WithNextToken(Aws::String &&value)
DescribeLocalGatewayRouteTablesRequest & AddFilters(const Filter &value)
DescribeLocalGatewayRouteTablesRequest & AddLocalGatewayRouteTableIds(Aws::String &&value)
DescribeLocalGatewayRouteTablesRequest & WithFilters(const Aws::Vector< Filter > &value)
AWS_EC2_API Aws::String SerializePayload() const override
DescribeLocalGatewayRouteTablesRequest & AddFilters(Filter &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector