AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
ListVpcEndpointsRequest.h
1
6#pragma once
7#include <aws/opensearchserverless/OpenSearchServerless_EXPORTS.h>
8#include <aws/opensearchserverless/OpenSearchServerlessRequest.h>
9#include <aws/opensearchserverless/model/VpcEndpointFilters.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace OpenSearchServerless
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_OPENSEARCHSERVERLESS_API ListVpcEndpointsRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "ListVpcEndpoints"; }
32
33 AWS_OPENSEARCHSERVERLESS_API Aws::String SerializePayload() const override;
34
35 AWS_OPENSEARCHSERVERLESS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
36
37
39
44 inline const VpcEndpointFilters& GetVpcEndpointFilters() const { return m_vpcEndpointFilters; }
45 inline bool VpcEndpointFiltersHasBeenSet() const { return m_vpcEndpointFiltersHasBeenSet; }
46 template<typename VpcEndpointFiltersT = VpcEndpointFilters>
47 void SetVpcEndpointFilters(VpcEndpointFiltersT&& value) { m_vpcEndpointFiltersHasBeenSet = true; m_vpcEndpointFilters = std::forward<VpcEndpointFiltersT>(value); }
48 template<typename VpcEndpointFiltersT = VpcEndpointFilters>
49 ListVpcEndpointsRequest& WithVpcEndpointFilters(VpcEndpointFiltersT&& value) { SetVpcEndpointFilters(std::forward<VpcEndpointFiltersT>(value)); return *this;}
51
53
59 inline const Aws::String& GetNextToken() const { return m_nextToken; }
60 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
61 template<typename NextTokenT = Aws::String>
62 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
63 template<typename NextTokenT = Aws::String>
64 ListVpcEndpointsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
66
68
73 inline int GetMaxResults() const { return m_maxResults; }
74 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
75 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
76 inline ListVpcEndpointsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
78 private:
79
80 VpcEndpointFilters m_vpcEndpointFilters;
81 bool m_vpcEndpointFiltersHasBeenSet = false;
82
83 Aws::String m_nextToken;
84 bool m_nextTokenHasBeenSet = false;
85
86 int m_maxResults{0};
87 bool m_maxResultsHasBeenSet = false;
88 };
89
90} // namespace Model
91} // namespace OpenSearchServerless
92} // namespace Aws
AWS_OPENSEARCHSERVERLESS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_OPENSEARCHSERVERLESS_API Aws::String SerializePayload() const override
ListVpcEndpointsRequest & WithVpcEndpointFilters(VpcEndpointFiltersT &&value)
ListVpcEndpointsRequest & WithNextToken(NextTokenT &&value)
AWS_OPENSEARCHSERVERLESS_API ListVpcEndpointsRequest()=default
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String