AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeVolumeStatusRequest.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/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.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 DescribeVolumeStatusRequest() = 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 "DescribeVolumeStatus"; }
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 int GetMaxResults() const { return m_maxResults; }
49 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
50 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
51 inline DescribeVolumeStatusRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
53
55
59 inline const Aws::String& GetNextToken() const { return m_nextToken; }
60 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
61 template<typename NextTokenT = Aws::String>
62 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
63 template<typename NextTokenT = Aws::String>
64 DescribeVolumeStatusRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
66
68
71 inline const Aws::Vector<Aws::String>& GetVolumeIds() const { return m_volumeIds; }
72 inline bool VolumeIdsHasBeenSet() const { return m_volumeIdsHasBeenSet; }
73 template<typename VolumeIdsT = Aws::Vector<Aws::String>>
74 void SetVolumeIds(VolumeIdsT&& value) { m_volumeIdsHasBeenSet = true; m_volumeIds = std::forward<VolumeIdsT>(value); }
75 template<typename VolumeIdsT = Aws::Vector<Aws::String>>
76 DescribeVolumeStatusRequest& WithVolumeIds(VolumeIdsT&& value) { SetVolumeIds(std::forward<VolumeIdsT>(value)); return *this;}
77 template<typename VolumeIdsT = Aws::String>
78 DescribeVolumeStatusRequest& AddVolumeIds(VolumeIdsT&& value) { m_volumeIdsHasBeenSet = true; m_volumeIds.emplace_back(std::forward<VolumeIdsT>(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 DescribeVolumeStatusRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
93
95
121 inline const Aws::Vector<Filter>& GetFilters() const { return m_filters; }
122 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
123 template<typename FiltersT = Aws::Vector<Filter>>
124 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
125 template<typename FiltersT = Aws::Vector<Filter>>
126 DescribeVolumeStatusRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
127 template<typename FiltersT = Filter>
128 DescribeVolumeStatusRequest& AddFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters.emplace_back(std::forward<FiltersT>(value)); return *this; }
130 private:
131
132 int m_maxResults{0};
133 bool m_maxResultsHasBeenSet = false;
134
135 Aws::String m_nextToken;
136 bool m_nextTokenHasBeenSet = false;
137
138 Aws::Vector<Aws::String> m_volumeIds;
139 bool m_volumeIdsHasBeenSet = false;
140
141 bool m_dryRun{false};
142 bool m_dryRunHasBeenSet = false;
143
144 Aws::Vector<Filter> m_filters;
145 bool m_filtersHasBeenSet = false;
146 };
147
148} // namespace Model
149} // namespace EC2
150} // namespace Aws
DescribeVolumeStatusRequest & WithFilters(FiltersT &&value)
AWS_EC2_API Aws::String SerializePayload() const override
DescribeVolumeStatusRequest & WithDryRun(bool value)
virtual const char * GetServiceRequestName() const override
DescribeVolumeStatusRequest & AddFilters(FiltersT &&value)
DescribeVolumeStatusRequest & AddVolumeIds(VolumeIdsT &&value)
DescribeVolumeStatusRequest & WithMaxResults(int value)
AWS_EC2_API DescribeVolumeStatusRequest()=default
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeVolumeStatusRequest & WithNextToken(NextTokenT &&value)
const Aws::Vector< Aws::String > & GetVolumeIds() const
DescribeVolumeStatusRequest & WithVolumeIds(VolumeIdsT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector