AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeTransitGatewaysRequest.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 "DescribeTransitGateways"; }
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>& GetTransitGatewayIds() const{ return m_transitGatewayIds; }
46 inline bool TransitGatewayIdsHasBeenSet() const { return m_transitGatewayIdsHasBeenSet; }
47 inline void SetTransitGatewayIds(const Aws::Vector<Aws::String>& value) { m_transitGatewayIdsHasBeenSet = true; m_transitGatewayIds = value; }
48 inline void SetTransitGatewayIds(Aws::Vector<Aws::String>&& value) { m_transitGatewayIdsHasBeenSet = true; m_transitGatewayIds = std::move(value); }
51 inline DescribeTransitGatewaysRequest& AddTransitGatewayIds(const Aws::String& value) { m_transitGatewayIdsHasBeenSet = true; m_transitGatewayIds.push_back(value); return *this; }
52 inline DescribeTransitGatewaysRequest& AddTransitGatewayIds(Aws::String&& value) { m_transitGatewayIdsHasBeenSet = true; m_transitGatewayIds.push_back(std::move(value)); return *this; }
53 inline DescribeTransitGatewaysRequest& AddTransitGatewayIds(const char* value) { m_transitGatewayIdsHasBeenSet = true; m_transitGatewayIds.push_back(value); return *this; }
55
57
89 inline const Aws::Vector<Filter>& GetFilters() const{ return m_filters; }
90 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
91 inline void SetFilters(const Aws::Vector<Filter>& value) { m_filtersHasBeenSet = true; m_filters = value; }
92 inline void SetFilters(Aws::Vector<Filter>&& value) { m_filtersHasBeenSet = true; m_filters = std::move(value); }
93 inline DescribeTransitGatewaysRequest& WithFilters(const Aws::Vector<Filter>& value) { SetFilters(value); return *this;}
94 inline DescribeTransitGatewaysRequest& WithFilters(Aws::Vector<Filter>&& value) { SetFilters(std::move(value)); return *this;}
95 inline DescribeTransitGatewaysRequest& AddFilters(const Filter& value) { m_filtersHasBeenSet = true; m_filters.push_back(value); return *this; }
96 inline DescribeTransitGatewaysRequest& AddFilters(Filter&& value) { m_filtersHasBeenSet = true; m_filters.push_back(std::move(value)); return *this; }
98
100
105 inline int GetMaxResults() const{ return m_maxResults; }
106 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
107 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
108 inline DescribeTransitGatewaysRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
110
112
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 DescribeTransitGatewaysRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
121 inline DescribeTransitGatewaysRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
122 inline DescribeTransitGatewaysRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
124
126
132 inline bool GetDryRun() const{ return m_dryRun; }
133 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
134 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
135 inline DescribeTransitGatewaysRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
137 private:
138
139 Aws::Vector<Aws::String> m_transitGatewayIds;
140 bool m_transitGatewayIdsHasBeenSet = false;
141
142 Aws::Vector<Filter> m_filters;
143 bool m_filtersHasBeenSet = false;
144
145 int m_maxResults;
146 bool m_maxResultsHasBeenSet = false;
147
148 Aws::String m_nextToken;
149 bool m_nextTokenHasBeenSet = false;
150
151 bool m_dryRun;
152 bool m_dryRunHasBeenSet = false;
153 };
154
155} // namespace Model
156} // namespace EC2
157} // namespace Aws
const Aws::Vector< Aws::String > & GetTransitGatewayIds() const
void SetTransitGatewayIds(Aws::Vector< Aws::String > &&value)
virtual const char * GetServiceRequestName() const override
DescribeTransitGatewaysRequest & WithTransitGatewayIds(Aws::Vector< Aws::String > &&value)
DescribeTransitGatewaysRequest & WithTransitGatewayIds(const Aws::Vector< Aws::String > &value)
DescribeTransitGatewaysRequest & WithFilters(Aws::Vector< Filter > &&value)
DescribeTransitGatewaysRequest & WithNextToken(const Aws::String &value)
DescribeTransitGatewaysRequest & WithFilters(const Aws::Vector< Filter > &value)
DescribeTransitGatewaysRequest & WithNextToken(Aws::String &&value)
DescribeTransitGatewaysRequest & AddTransitGatewayIds(Aws::String &&value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
void SetTransitGatewayIds(const Aws::Vector< Aws::String > &value)
DescribeTransitGatewaysRequest & WithNextToken(const char *value)
DescribeTransitGatewaysRequest & WithDryRun(bool value)
DescribeTransitGatewaysRequest & AddFilters(Filter &&value)
AWS_EC2_API Aws::String SerializePayload() const override
DescribeTransitGatewaysRequest & AddFilters(const Filter &value)
DescribeTransitGatewaysRequest & AddTransitGatewayIds(const char *value)
DescribeTransitGatewaysRequest & AddTransitGatewayIds(const Aws::String &value)
DescribeTransitGatewaysRequest & WithMaxResults(int value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector