AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeHostReservationOfferingsRequest.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:
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 "DescribeHostReservationOfferings"; }
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 const Aws::Vector<Filter>& GetFilter() const { return m_filter; }
49 inline bool FilterHasBeenSet() const { return m_filterHasBeenSet; }
50 template<typename FilterT = Aws::Vector<Filter>>
51 void SetFilter(FilterT&& value) { m_filterHasBeenSet = true; m_filter = std::forward<FilterT>(value); }
52 template<typename FilterT = Aws::Vector<Filter>>
53 DescribeHostReservationOfferingsRequest& WithFilter(FilterT&& value) { SetFilter(std::forward<FilterT>(value)); return *this;}
54 template<typename FilterT = Filter>
55 DescribeHostReservationOfferingsRequest& AddFilter(FilterT&& value) { m_filterHasBeenSet = true; m_filter.emplace_back(std::forward<FilterT>(value)); return *this; }
57
59
66 inline int GetMaxDuration() const { return m_maxDuration; }
67 inline bool MaxDurationHasBeenSet() const { return m_maxDurationHasBeenSet; }
68 inline void SetMaxDuration(int value) { m_maxDurationHasBeenSet = true; m_maxDuration = value; }
71
73
80 inline int GetMaxResults() const { return m_maxResults; }
81 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
82 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
83 inline DescribeHostReservationOfferingsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
85
87
94 inline int GetMinDuration() const { return m_minDuration; }
95 inline bool MinDurationHasBeenSet() const { return m_minDurationHasBeenSet; }
96 inline void SetMinDuration(int value) { m_minDurationHasBeenSet = true; m_minDuration = value; }
99
101
104 inline const Aws::String& GetNextToken() const { return m_nextToken; }
105 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
106 template<typename NextTokenT = Aws::String>
107 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
108 template<typename NextTokenT = Aws::String>
109 DescribeHostReservationOfferingsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
111
113
116 inline const Aws::String& GetOfferingId() const { return m_offeringId; }
117 inline bool OfferingIdHasBeenSet() const { return m_offeringIdHasBeenSet; }
118 template<typename OfferingIdT = Aws::String>
119 void SetOfferingId(OfferingIdT&& value) { m_offeringIdHasBeenSet = true; m_offeringId = std::forward<OfferingIdT>(value); }
120 template<typename OfferingIdT = Aws::String>
121 DescribeHostReservationOfferingsRequest& WithOfferingId(OfferingIdT&& value) { SetOfferingId(std::forward<OfferingIdT>(value)); return *this;}
123 private:
124
125 Aws::Vector<Filter> m_filter;
126 bool m_filterHasBeenSet = false;
127
128 int m_maxDuration{0};
129 bool m_maxDurationHasBeenSet = false;
130
131 int m_maxResults{0};
132 bool m_maxResultsHasBeenSet = false;
133
134 int m_minDuration{0};
135 bool m_minDurationHasBeenSet = false;
136
137 Aws::String m_nextToken;
138 bool m_nextTokenHasBeenSet = false;
139
140 Aws::String m_offeringId;
141 bool m_offeringIdHasBeenSet = false;
142 };
143
144} // namespace Model
145} // namespace EC2
146} // namespace Aws
DescribeHostReservationOfferingsRequest & WithMinDuration(int value)
DescribeHostReservationOfferingsRequest & AddFilter(FilterT &&value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeHostReservationOfferingsRequest & WithFilter(FilterT &&value)
AWS_EC2_API Aws::String SerializePayload() const override
DescribeHostReservationOfferingsRequest & WithMaxResults(int value)
DescribeHostReservationOfferingsRequest & WithMaxDuration(int value)
DescribeHostReservationOfferingsRequest & WithNextToken(NextTokenT &&value)
DescribeHostReservationOfferingsRequest & WithOfferingId(OfferingIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector