AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeIpamsRequest.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 DescribeIpamsRequest() = 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 "DescribeIpams"; }
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 DescribeIpamsRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
53
55
61 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
62 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
63 template<typename FiltersT = Aws::Vector<Filter>>
64 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
65 template<typename FiltersT = Aws::Vector<Filter>>
66 DescribeIpamsRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
67 template<typename FiltersT = Filter>
68 DescribeIpamsRequest& AddFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters.emplace_back(std::forward<FiltersT>(value)); return *this; }
70
72
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 DescribeIpamsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
80
82
85 inline const Aws::String& GetNextToken() const { return m_nextToken; }
86 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
87 template<typename NextTokenT = Aws::String>
88 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
89 template<typename NextTokenT = Aws::String>
90 DescribeIpamsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
92
94
97 inline const Aws::Vector<Aws::String>& GetIpamIds() const { return m_ipamIds; }
98 inline bool IpamIdsHasBeenSet() const { return m_ipamIdsHasBeenSet; }
99 template<typename IpamIdsT = Aws::Vector<Aws::String>>
100 void SetIpamIds(IpamIdsT&& value) { m_ipamIdsHasBeenSet = true; m_ipamIds = std::forward<IpamIdsT>(value); }
101 template<typename IpamIdsT = Aws::Vector<Aws::String>>
102 DescribeIpamsRequest& WithIpamIds(IpamIdsT&& value) { SetIpamIds(std::forward<IpamIdsT>(value)); return *this;}
103 template<typename IpamIdsT = Aws::String>
104 DescribeIpamsRequest& AddIpamIds(IpamIdsT&& value) { m_ipamIdsHasBeenSet = true; m_ipamIds.emplace_back(std::forward<IpamIdsT>(value)); return *this; }
106 private:
107
108 bool m_dryRun{false};
109 bool m_dryRunHasBeenSet = false;
110
111 Aws::Vector<Filter> m_filters;
112 bool m_filtersHasBeenSet = false;
113
114 int m_maxResults{0};
115 bool m_maxResultsHasBeenSet = false;
116
117 Aws::String m_nextToken;
118 bool m_nextTokenHasBeenSet = false;
119
120 Aws::Vector<Aws::String> m_ipamIds;
121 bool m_ipamIdsHasBeenSet = false;
122 };
123
124} // namespace Model
125} // namespace EC2
126} // namespace Aws
AWS_EC2_API Aws::String SerializePayload() const override
const Aws::String & GetNextToken() const
DescribeIpamsRequest & WithNextToken(NextTokenT &&value)
DescribeIpamsRequest & WithMaxResults(int value)
DescribeIpamsRequest & WithFilters(FiltersT &&value)
DescribeIpamsRequest & WithDryRun(bool value)
const Aws::Vector< Filter > & GetFilters() const
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
AWS_EC2_API DescribeIpamsRequest()=default
const Aws::Vector< Aws::String > & GetIpamIds() const
DescribeIpamsRequest & WithIpamIds(IpamIdsT &&value)
virtual const char * GetServiceRequestName() const override
DescribeIpamsRequest & AddIpamIds(IpamIdsT &&value)
DescribeIpamsRequest & AddFilters(FiltersT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector