AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeCarrierGatewaysRequest.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 DescribeCarrierGatewaysRequest() = 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 "DescribeCarrierGateways"; }
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>& GetCarrierGatewayIds() const { return m_carrierGatewayIds; }
46 inline bool CarrierGatewayIdsHasBeenSet() const { return m_carrierGatewayIdsHasBeenSet; }
47 template<typename CarrierGatewayIdsT = Aws::Vector<Aws::String>>
48 void SetCarrierGatewayIds(CarrierGatewayIdsT&& value) { m_carrierGatewayIdsHasBeenSet = true; m_carrierGatewayIds = std::forward<CarrierGatewayIdsT>(value); }
49 template<typename CarrierGatewayIdsT = Aws::Vector<Aws::String>>
50 DescribeCarrierGatewaysRequest& WithCarrierGatewayIds(CarrierGatewayIdsT&& value) { SetCarrierGatewayIds(std::forward<CarrierGatewayIdsT>(value)); return *this;}
51 template<typename CarrierGatewayIdsT = Aws::String>
52 DescribeCarrierGatewaysRequest& AddCarrierGatewayIds(CarrierGatewayIdsT&& value) { m_carrierGatewayIdsHasBeenSet = true; m_carrierGatewayIds.emplace_back(std::forward<CarrierGatewayIdsT>(value)); return *this; }
54
56
73 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
74 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
75 template<typename FiltersT = Aws::Vector<Filter>>
76 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
77 template<typename FiltersT = Aws::Vector<Filter>>
78 DescribeCarrierGatewaysRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
79 template<typename FiltersT = Filter>
80 DescribeCarrierGatewaysRequest& AddFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters.emplace_back(std::forward<FiltersT>(value)); return *this; }
82
84
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 DescribeCarrierGatewaysRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
94
96
99 inline const Aws::String& GetNextToken() const { return m_nextToken; }
100 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
101 template<typename NextTokenT = Aws::String>
102 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
103 template<typename NextTokenT = Aws::String>
104 DescribeCarrierGatewaysRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
106
108
114 inline bool GetDryRun() const { return m_dryRun; }
115 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
116 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
117 inline DescribeCarrierGatewaysRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
119 private:
120
121 Aws::Vector<Aws::String> m_carrierGatewayIds;
122 bool m_carrierGatewayIdsHasBeenSet = false;
123
124 Aws::Vector<Filter> m_filters;
125 bool m_filtersHasBeenSet = false;
126
127 int m_maxResults{0};
128 bool m_maxResultsHasBeenSet = false;
129
130 Aws::String m_nextToken;
131 bool m_nextTokenHasBeenSet = false;
132
133 bool m_dryRun{false};
134 bool m_dryRunHasBeenSet = false;
135 };
136
137} // namespace Model
138} // namespace EC2
139} // namespace Aws
const Aws::Vector< Aws::String > & GetCarrierGatewayIds() const
DescribeCarrierGatewaysRequest & WithDryRun(bool value)
DescribeCarrierGatewaysRequest & WithMaxResults(int value)
AWS_EC2_API Aws::String SerializePayload() const override
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeCarrierGatewaysRequest & AddCarrierGatewayIds(CarrierGatewayIdsT &&value)
virtual const char * GetServiceRequestName() const override
DescribeCarrierGatewaysRequest & WithCarrierGatewayIds(CarrierGatewayIdsT &&value)
DescribeCarrierGatewaysRequest & WithNextToken(NextTokenT &&value)
DescribeCarrierGatewaysRequest & AddFilters(FiltersT &&value)
DescribeCarrierGatewaysRequest & WithFilters(FiltersT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector