AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribePrefixListsRequest.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 DescribePrefixListsRequest() = 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 "DescribePrefixLists"; }
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 DescribePrefixListsRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
53
55
60 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
61 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
62 template<typename FiltersT = Aws::Vector<Filter>>
63 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
64 template<typename FiltersT = Aws::Vector<Filter>>
65 DescribePrefixListsRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
66 template<typename FiltersT = Filter>
67 DescribePrefixListsRequest& AddFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters.emplace_back(std::forward<FiltersT>(value)); return *this; }
69
71
76 inline int GetMaxResults() const { return m_maxResults; }
77 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
78 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
79 inline DescribePrefixListsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
81
83
86 inline const Aws::String& GetNextToken() const { return m_nextToken; }
87 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
88 template<typename NextTokenT = Aws::String>
89 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
90 template<typename NextTokenT = Aws::String>
91 DescribePrefixListsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
93
95
98 inline const Aws::Vector<Aws::String>& GetPrefixListIds() const { return m_prefixListIds; }
99 inline bool PrefixListIdsHasBeenSet() const { return m_prefixListIdsHasBeenSet; }
100 template<typename PrefixListIdsT = Aws::Vector<Aws::String>>
101 void SetPrefixListIds(PrefixListIdsT&& value) { m_prefixListIdsHasBeenSet = true; m_prefixListIds = std::forward<PrefixListIdsT>(value); }
102 template<typename PrefixListIdsT = Aws::Vector<Aws::String>>
103 DescribePrefixListsRequest& WithPrefixListIds(PrefixListIdsT&& value) { SetPrefixListIds(std::forward<PrefixListIdsT>(value)); return *this;}
104 template<typename PrefixListIdsT = Aws::String>
105 DescribePrefixListsRequest& AddPrefixListIds(PrefixListIdsT&& value) { m_prefixListIdsHasBeenSet = true; m_prefixListIds.emplace_back(std::forward<PrefixListIdsT>(value)); return *this; }
107 private:
108
109 bool m_dryRun{false};
110 bool m_dryRunHasBeenSet = false;
111
112 Aws::Vector<Filter> m_filters;
113 bool m_filtersHasBeenSet = false;
114
115 int m_maxResults{0};
116 bool m_maxResultsHasBeenSet = false;
117
118 Aws::String m_nextToken;
119 bool m_nextTokenHasBeenSet = false;
120
121 Aws::Vector<Aws::String> m_prefixListIds;
122 bool m_prefixListIdsHasBeenSet = false;
123 };
124
125} // namespace Model
126} // namespace EC2
127} // namespace Aws
DescribePrefixListsRequest & WithDryRun(bool value)
DescribePrefixListsRequest & WithMaxResults(int value)
AWS_EC2_API DescribePrefixListsRequest()=default
DescribePrefixListsRequest & WithPrefixListIds(PrefixListIdsT &&value)
DescribePrefixListsRequest & AddPrefixListIds(PrefixListIdsT &&value)
DescribePrefixListsRequest & AddFilters(FiltersT &&value)
AWS_EC2_API Aws::String SerializePayload() const override
const Aws::Vector< Filter > & GetFilters() const
DescribePrefixListsRequest & WithNextToken(NextTokenT &&value)
const Aws::Vector< Aws::String > & GetPrefixListIds() const
DescribePrefixListsRequest & WithFilters(FiltersT &&value)
virtual const char * GetServiceRequestName() 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