AWS SDK for C++

AWS SDK for C++ Version 1.11.632

Loading...
Searching...
No Matches
DescribeVolumesRequest.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 DescribeVolumesRequest() = 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 "DescribeVolumes"; }
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
46 inline const Aws::Vector<Aws::String>& GetVolumeIds() const { return m_volumeIds; }
47 inline bool VolumeIdsHasBeenSet() const { return m_volumeIdsHasBeenSet; }
48 template<typename VolumeIdsT = Aws::Vector<Aws::String>>
49 void SetVolumeIds(VolumeIdsT&& value) { m_volumeIdsHasBeenSet = true; m_volumeIds = std::forward<VolumeIdsT>(value); }
50 template<typename VolumeIdsT = Aws::Vector<Aws::String>>
51 DescribeVolumesRequest& WithVolumeIds(VolumeIdsT&& value) { SetVolumeIds(std::forward<VolumeIdsT>(value)); return *this;}
52 template<typename VolumeIdsT = Aws::String>
53 DescribeVolumesRequest& AddVolumeIds(VolumeIdsT&& value) { m_volumeIdsHasBeenSet = true; m_volumeIds.emplace_back(std::forward<VolumeIdsT>(value)); return *this; }
55
57
63 inline bool GetDryRun() const { return m_dryRun; }
64 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
65 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
66 inline DescribeVolumesRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
68
70
112 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
113 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
114 template<typename FiltersT = Aws::Vector<Filter>>
115 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
116 template<typename FiltersT = Aws::Vector<Filter>>
117 DescribeVolumesRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
118 template<typename FiltersT = Filter>
119 DescribeVolumesRequest& AddFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters.emplace_back(std::forward<FiltersT>(value)); return *this; }
121
123
127 inline const Aws::String& GetNextToken() const { return m_nextToken; }
128 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
129 template<typename NextTokenT = Aws::String>
130 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
131 template<typename NextTokenT = Aws::String>
132 DescribeVolumesRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
134
136
142 inline int GetMaxResults() const { return m_maxResults; }
143 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
144 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
145 inline DescribeVolumesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
147 private:
148
149 Aws::Vector<Aws::String> m_volumeIds;
150 bool m_volumeIdsHasBeenSet = false;
151
152 bool m_dryRun{false};
153 bool m_dryRunHasBeenSet = false;
154
155 Aws::Vector<Filter> m_filters;
156 bool m_filtersHasBeenSet = false;
157
158 Aws::String m_nextToken;
159 bool m_nextTokenHasBeenSet = false;
160
161 int m_maxResults{0};
162 bool m_maxResultsHasBeenSet = false;
163 };
164
165} // namespace Model
166} // namespace EC2
167} // namespace Aws
const Aws::Vector< Aws::String > & GetVolumeIds() const
DescribeVolumesRequest & AddFilters(FiltersT &&value)
DescribeVolumesRequest & WithFilters(FiltersT &&value)
virtual const char * GetServiceRequestName() const override
DescribeVolumesRequest & WithDryRun(bool value)
AWS_EC2_API DescribeVolumesRequest()=default
DescribeVolumesRequest & WithMaxResults(int value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeVolumesRequest & WithNextToken(NextTokenT &&value)
DescribeVolumesRequest & WithVolumeIds(VolumeIdsT &&value)
DescribeVolumesRequest & AddVolumeIds(VolumeIdsT &&value)
AWS_EC2_API Aws::String SerializePayload() const override
const Aws::Vector< Filter > & GetFilters() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector