AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeDhcpOptionsRequest.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 DescribeDhcpOptionsRequest() = 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 "DescribeDhcpOptions"; }
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>& GetDhcpOptionsIds() const { return m_dhcpOptionsIds; }
46 inline bool DhcpOptionsIdsHasBeenSet() const { return m_dhcpOptionsIdsHasBeenSet; }
47 template<typename DhcpOptionsIdsT = Aws::Vector<Aws::String>>
48 void SetDhcpOptionsIds(DhcpOptionsIdsT&& value) { m_dhcpOptionsIdsHasBeenSet = true; m_dhcpOptionsIds = std::forward<DhcpOptionsIdsT>(value); }
49 template<typename DhcpOptionsIdsT = Aws::Vector<Aws::String>>
50 DescribeDhcpOptionsRequest& WithDhcpOptionsIds(DhcpOptionsIdsT&& value) { SetDhcpOptionsIds(std::forward<DhcpOptionsIdsT>(value)); return *this;}
51 template<typename DhcpOptionsIdsT = Aws::String>
52 DescribeDhcpOptionsRequest& AddDhcpOptionsIds(DhcpOptionsIdsT&& value) { m_dhcpOptionsIdsHasBeenSet = true; m_dhcpOptionsIds.emplace_back(std::forward<DhcpOptionsIdsT>(value)); return *this; }
54
56
60 inline const Aws::String& GetNextToken() const { return m_nextToken; }
61 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
62 template<typename NextTokenT = Aws::String>
63 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
64 template<typename NextTokenT = Aws::String>
65 DescribeDhcpOptionsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
67
69
75 inline int GetMaxResults() const { return m_maxResults; }
76 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
77 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
78 inline DescribeDhcpOptionsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
80
82
88 inline bool GetDryRun() const { return m_dryRun; }
89 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
90 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
91 inline DescribeDhcpOptionsRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
93
95
111 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
112 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
113 template<typename FiltersT = Aws::Vector<Filter>>
114 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
115 template<typename FiltersT = Aws::Vector<Filter>>
116 DescribeDhcpOptionsRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
117 template<typename FiltersT = Filter>
118 DescribeDhcpOptionsRequest& AddFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters.emplace_back(std::forward<FiltersT>(value)); return *this; }
120 private:
121
122 Aws::Vector<Aws::String> m_dhcpOptionsIds;
123 bool m_dhcpOptionsIdsHasBeenSet = false;
124
125 Aws::String m_nextToken;
126 bool m_nextTokenHasBeenSet = false;
127
128 int m_maxResults{0};
129 bool m_maxResultsHasBeenSet = false;
130
131 bool m_dryRun{false};
132 bool m_dryRunHasBeenSet = false;
133
134 Aws::Vector<Filter> m_filters;
135 bool m_filtersHasBeenSet = false;
136 };
137
138} // namespace Model
139} // namespace EC2
140} // namespace Aws
DescribeDhcpOptionsRequest & AddDhcpOptionsIds(DhcpOptionsIdsT &&value)
DescribeDhcpOptionsRequest & AddFilters(FiltersT &&value)
virtual const char * GetServiceRequestName() const override
const Aws::Vector< Aws::String > & GetDhcpOptionsIds() const
DescribeDhcpOptionsRequest & WithNextToken(NextTokenT &&value)
DescribeDhcpOptionsRequest & WithDryRun(bool value)
DescribeDhcpOptionsRequest & WithFilters(FiltersT &&value)
DescribeDhcpOptionsRequest & WithMaxResults(int value)
AWS_EC2_API DescribeDhcpOptionsRequest()=default
AWS_EC2_API Aws::String SerializePayload() const override
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
const Aws::Vector< Filter > & GetFilters() const
DescribeDhcpOptionsRequest & WithDhcpOptionsIds(DhcpOptionsIdsT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector