AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeOutpostLagsRequest.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 DescribeOutpostLagsRequest() = 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 "DescribeOutpostLags"; }
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>& GetOutpostLagIds() const { return m_outpostLagIds; }
46 inline bool OutpostLagIdsHasBeenSet() const { return m_outpostLagIdsHasBeenSet; }
47 template<typename OutpostLagIdsT = Aws::Vector<Aws::String>>
48 void SetOutpostLagIds(OutpostLagIdsT&& value) { m_outpostLagIdsHasBeenSet = true; m_outpostLagIds = std::forward<OutpostLagIdsT>(value); }
49 template<typename OutpostLagIdsT = Aws::Vector<Aws::String>>
50 DescribeOutpostLagsRequest& WithOutpostLagIds(OutpostLagIdsT&& value) { SetOutpostLagIds(std::forward<OutpostLagIdsT>(value)); return *this;}
51 template<typename OutpostLagIdsT = Aws::String>
52 DescribeOutpostLagsRequest& AddOutpostLagIds(OutpostLagIdsT&& value) { m_outpostLagIdsHasBeenSet = true; m_outpostLagIds.emplace_back(std::forward<OutpostLagIdsT>(value)); return *this; }
54
56
72 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
73 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
74 template<typename FiltersT = Aws::Vector<Filter>>
75 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
76 template<typename FiltersT = Aws::Vector<Filter>>
77 DescribeOutpostLagsRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
78 template<typename FiltersT = Filter>
79 DescribeOutpostLagsRequest& AddFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters.emplace_back(std::forward<FiltersT>(value)); return *this; }
81
83
88 inline int GetMaxResults() const { return m_maxResults; }
89 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
90 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
91 inline DescribeOutpostLagsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
93
95
98 inline const Aws::String& GetNextToken() const { return m_nextToken; }
99 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
100 template<typename NextTokenT = Aws::String>
101 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
102 template<typename NextTokenT = Aws::String>
103 DescribeOutpostLagsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
105
107
113 inline bool GetDryRun() const { return m_dryRun; }
114 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
115 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
116 inline DescribeOutpostLagsRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
118 private:
119
120 Aws::Vector<Aws::String> m_outpostLagIds;
121 bool m_outpostLagIdsHasBeenSet = false;
122
123 Aws::Vector<Filter> m_filters;
124 bool m_filtersHasBeenSet = false;
125
126 int m_maxResults{0};
127 bool m_maxResultsHasBeenSet = false;
128
129 Aws::String m_nextToken;
130 bool m_nextTokenHasBeenSet = false;
131
132 bool m_dryRun{false};
133 bool m_dryRunHasBeenSet = false;
134 };
135
136} // namespace Model
137} // namespace EC2
138} // namespace Aws
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
virtual const char * GetServiceRequestName() const override
DescribeOutpostLagsRequest & AddFilters(FiltersT &&value)
AWS_EC2_API Aws::String SerializePayload() const override
DescribeOutpostLagsRequest & AddOutpostLagIds(OutpostLagIdsT &&value)
AWS_EC2_API DescribeOutpostLagsRequest()=default
const Aws::Vector< Filter > & GetFilters() const
DescribeOutpostLagsRequest & WithFilters(FiltersT &&value)
DescribeOutpostLagsRequest & WithMaxResults(int value)
const Aws::Vector< Aws::String > & GetOutpostLagIds() const
DescribeOutpostLagsRequest & WithOutpostLagIds(OutpostLagIdsT &&value)
DescribeOutpostLagsRequest & WithDryRun(bool value)
DescribeOutpostLagsRequest & WithNextToken(NextTokenT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector