AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeVpcEndpointServicesRequest.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 DescribeVpcEndpointServicesRequest() = 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 "DescribeVpcEndpointServices"; }
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 DescribeVpcEndpointServicesRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
53
55
58 inline const Aws::Vector<Aws::String>& GetServiceNames() const { return m_serviceNames; }
59 inline bool ServiceNamesHasBeenSet() const { return m_serviceNamesHasBeenSet; }
60 template<typename ServiceNamesT = Aws::Vector<Aws::String>>
61 void SetServiceNames(ServiceNamesT&& value) { m_serviceNamesHasBeenSet = true; m_serviceNames = std::forward<ServiceNamesT>(value); }
62 template<typename ServiceNamesT = Aws::Vector<Aws::String>>
63 DescribeVpcEndpointServicesRequest& WithServiceNames(ServiceNamesT&& value) { SetServiceNames(std::forward<ServiceNamesT>(value)); return *this;}
64 template<typename ServiceNamesT = Aws::String>
65 DescribeVpcEndpointServicesRequest& AddServiceNames(ServiceNamesT&& value) { m_serviceNamesHasBeenSet = true; m_serviceNames.emplace_back(std::forward<ServiceNamesT>(value)); return *this; }
67
69
87 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
88 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
89 template<typename FiltersT = Aws::Vector<Filter>>
90 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
91 template<typename FiltersT = Aws::Vector<Filter>>
92 DescribeVpcEndpointServicesRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
93 template<typename FiltersT = Filter>
94 DescribeVpcEndpointServicesRequest& AddFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters.emplace_back(std::forward<FiltersT>(value)); return *this; }
96
98
104 inline int GetMaxResults() const { return m_maxResults; }
105 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
106 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
107 inline DescribeVpcEndpointServicesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
109
111
115 inline const Aws::String& GetNextToken() const { return m_nextToken; }
116 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
117 template<typename NextTokenT = Aws::String>
118 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
119 template<typename NextTokenT = Aws::String>
120 DescribeVpcEndpointServicesRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
122
124
127 inline const Aws::Vector<Aws::String>& GetServiceRegions() const { return m_serviceRegions; }
128 inline bool ServiceRegionsHasBeenSet() const { return m_serviceRegionsHasBeenSet; }
129 template<typename ServiceRegionsT = Aws::Vector<Aws::String>>
130 void SetServiceRegions(ServiceRegionsT&& value) { m_serviceRegionsHasBeenSet = true; m_serviceRegions = std::forward<ServiceRegionsT>(value); }
131 template<typename ServiceRegionsT = Aws::Vector<Aws::String>>
132 DescribeVpcEndpointServicesRequest& WithServiceRegions(ServiceRegionsT&& value) { SetServiceRegions(std::forward<ServiceRegionsT>(value)); return *this;}
133 template<typename ServiceRegionsT = Aws::String>
134 DescribeVpcEndpointServicesRequest& AddServiceRegions(ServiceRegionsT&& value) { m_serviceRegionsHasBeenSet = true; m_serviceRegions.emplace_back(std::forward<ServiceRegionsT>(value)); return *this; }
136 private:
137
138 bool m_dryRun{false};
139 bool m_dryRunHasBeenSet = false;
140
141 Aws::Vector<Aws::String> m_serviceNames;
142 bool m_serviceNamesHasBeenSet = false;
143
144 Aws::Vector<Filter> m_filters;
145 bool m_filtersHasBeenSet = false;
146
147 int m_maxResults{0};
148 bool m_maxResultsHasBeenSet = false;
149
150 Aws::String m_nextToken;
151 bool m_nextTokenHasBeenSet = false;
152
153 Aws::Vector<Aws::String> m_serviceRegions;
154 bool m_serviceRegionsHasBeenSet = false;
155 };
156
157} // namespace Model
158} // namespace EC2
159} // namespace Aws
DescribeVpcEndpointServicesRequest & AddFilters(FiltersT &&value)
DescribeVpcEndpointServicesRequest & WithDryRun(bool value)
DescribeVpcEndpointServicesRequest & WithServiceNames(ServiceNamesT &&value)
DescribeVpcEndpointServicesRequest & WithFilters(FiltersT &&value)
DescribeVpcEndpointServicesRequest & WithNextToken(NextTokenT &&value)
DescribeVpcEndpointServicesRequest & WithMaxResults(int value)
DescribeVpcEndpointServicesRequest & AddServiceRegions(ServiceRegionsT &&value)
DescribeVpcEndpointServicesRequest & AddServiceNames(ServiceNamesT &&value)
DescribeVpcEndpointServicesRequest & WithServiceRegions(ServiceRegionsT &&value)
AWS_EC2_API Aws::String SerializePayload() const override
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector