AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeSnapshotsRequest.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:
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 "DescribeSnapshots"; }
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 DescribeSnapshotsRequest& 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 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
62 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
63 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
64 inline DescribeSnapshotsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
65 inline DescribeSnapshotsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
66 inline DescribeSnapshotsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
68
70
75 inline const Aws::Vector<Aws::String>& GetOwnerIds() const{ return m_ownerIds; }
76 inline bool OwnerIdsHasBeenSet() const { return m_ownerIdsHasBeenSet; }
77 inline void SetOwnerIds(const Aws::Vector<Aws::String>& value) { m_ownerIdsHasBeenSet = true; m_ownerIds = value; }
78 inline void SetOwnerIds(Aws::Vector<Aws::String>&& value) { m_ownerIdsHasBeenSet = true; m_ownerIds = std::move(value); }
79 inline DescribeSnapshotsRequest& WithOwnerIds(const Aws::Vector<Aws::String>& value) { SetOwnerIds(value); return *this;}
80 inline DescribeSnapshotsRequest& WithOwnerIds(Aws::Vector<Aws::String>&& value) { SetOwnerIds(std::move(value)); return *this;}
81 inline DescribeSnapshotsRequest& AddOwnerIds(const Aws::String& value) { m_ownerIdsHasBeenSet = true; m_ownerIds.push_back(value); return *this; }
82 inline DescribeSnapshotsRequest& AddOwnerIds(Aws::String&& value) { m_ownerIdsHasBeenSet = true; m_ownerIds.push_back(std::move(value)); return *this; }
83 inline DescribeSnapshotsRequest& AddOwnerIds(const char* value) { m_ownerIdsHasBeenSet = true; m_ownerIds.push_back(value); return *this; }
85
87
91 inline const Aws::Vector<Aws::String>& GetRestorableByUserIds() const{ return m_restorableByUserIds; }
92 inline bool RestorableByUserIdsHasBeenSet() const { return m_restorableByUserIdsHasBeenSet; }
93 inline void SetRestorableByUserIds(const Aws::Vector<Aws::String>& value) { m_restorableByUserIdsHasBeenSet = true; m_restorableByUserIds = value; }
94 inline void SetRestorableByUserIds(Aws::Vector<Aws::String>&& value) { m_restorableByUserIdsHasBeenSet = true; m_restorableByUserIds = std::move(value); }
97 inline DescribeSnapshotsRequest& AddRestorableByUserIds(const Aws::String& value) { m_restorableByUserIdsHasBeenSet = true; m_restorableByUserIds.push_back(value); return *this; }
98 inline DescribeSnapshotsRequest& AddRestorableByUserIds(Aws::String&& value) { m_restorableByUserIdsHasBeenSet = true; m_restorableByUserIds.push_back(std::move(value)); return *this; }
99 inline DescribeSnapshotsRequest& AddRestorableByUserIds(const char* value) { m_restorableByUserIdsHasBeenSet = true; m_restorableByUserIds.push_back(value); return *this; }
101
103
107 inline const Aws::Vector<Aws::String>& GetSnapshotIds() const{ return m_snapshotIds; }
108 inline bool SnapshotIdsHasBeenSet() const { return m_snapshotIdsHasBeenSet; }
109 inline void SetSnapshotIds(const Aws::Vector<Aws::String>& value) { m_snapshotIdsHasBeenSet = true; m_snapshotIds = value; }
110 inline void SetSnapshotIds(Aws::Vector<Aws::String>&& value) { m_snapshotIdsHasBeenSet = true; m_snapshotIds = std::move(value); }
112 inline DescribeSnapshotsRequest& WithSnapshotIds(Aws::Vector<Aws::String>&& value) { SetSnapshotIds(std::move(value)); return *this;}
113 inline DescribeSnapshotsRequest& AddSnapshotIds(const Aws::String& value) { m_snapshotIdsHasBeenSet = true; m_snapshotIds.push_back(value); return *this; }
114 inline DescribeSnapshotsRequest& AddSnapshotIds(Aws::String&& value) { m_snapshotIdsHasBeenSet = true; m_snapshotIds.push_back(std::move(value)); return *this; }
115 inline DescribeSnapshotsRequest& AddSnapshotIds(const char* value) { m_snapshotIdsHasBeenSet = true; m_snapshotIds.push_back(value); return *this; }
117
119
125 inline bool GetDryRun() const{ return m_dryRun; }
126 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
127 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
128 inline DescribeSnapshotsRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
130
132
161 inline const Aws::Vector<Filter>& GetFilters() const{ return m_filters; }
162 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
163 inline void SetFilters(const Aws::Vector<Filter>& value) { m_filtersHasBeenSet = true; m_filters = value; }
164 inline void SetFilters(Aws::Vector<Filter>&& value) { m_filtersHasBeenSet = true; m_filters = std::move(value); }
165 inline DescribeSnapshotsRequest& WithFilters(const Aws::Vector<Filter>& value) { SetFilters(value); return *this;}
166 inline DescribeSnapshotsRequest& WithFilters(Aws::Vector<Filter>&& value) { SetFilters(std::move(value)); return *this;}
167 inline DescribeSnapshotsRequest& AddFilters(const Filter& value) { m_filtersHasBeenSet = true; m_filters.push_back(value); return *this; }
168 inline DescribeSnapshotsRequest& AddFilters(Filter&& value) { m_filtersHasBeenSet = true; m_filters.push_back(std::move(value)); return *this; }
170 private:
171
172 int m_maxResults;
173 bool m_maxResultsHasBeenSet = false;
174
175 Aws::String m_nextToken;
176 bool m_nextTokenHasBeenSet = false;
177
178 Aws::Vector<Aws::String> m_ownerIds;
179 bool m_ownerIdsHasBeenSet = false;
180
181 Aws::Vector<Aws::String> m_restorableByUserIds;
182 bool m_restorableByUserIdsHasBeenSet = false;
183
184 Aws::Vector<Aws::String> m_snapshotIds;
185 bool m_snapshotIdsHasBeenSet = false;
186
187 bool m_dryRun;
188 bool m_dryRunHasBeenSet = false;
189
190 Aws::Vector<Filter> m_filters;
191 bool m_filtersHasBeenSet = false;
192 };
193
194} // namespace Model
195} // namespace EC2
196} // namespace Aws
DescribeSnapshotsRequest & AddRestorableByUserIds(const char *value)
DescribeSnapshotsRequest & AddFilters(Filter &&value)
DescribeSnapshotsRequest & AddSnapshotIds(Aws::String &&value)
DescribeSnapshotsRequest & WithFilters(const Aws::Vector< Filter > &value)
DescribeSnapshotsRequest & AddOwnerIds(const char *value)
void SetOwnerIds(Aws::Vector< Aws::String > &&value)
void SetFilters(Aws::Vector< Filter > &&value)
DescribeSnapshotsRequest & AddRestorableByUserIds(const Aws::String &value)
DescribeSnapshotsRequest & AddSnapshotIds(const Aws::String &value)
DescribeSnapshotsRequest & AddFilters(const Filter &value)
DescribeSnapshotsRequest & WithRestorableByUserIds(Aws::Vector< Aws::String > &&value)
DescribeSnapshotsRequest & WithFilters(Aws::Vector< Filter > &&value)
DescribeSnapshotsRequest & WithNextToken(const Aws::String &value)
DescribeSnapshotsRequest & WithSnapshotIds(const Aws::Vector< Aws::String > &value)
DescribeSnapshotsRequest & WithMaxResults(int value)
void SetSnapshotIds(const Aws::Vector< Aws::String > &value)
void SetRestorableByUserIds(const Aws::Vector< Aws::String > &value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeSnapshotsRequest & AddRestorableByUserIds(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
const Aws::Vector< Aws::String > & GetRestorableByUserIds() const
const Aws::Vector< Aws::String > & GetSnapshotIds() const
DescribeSnapshotsRequest & WithDryRun(bool value)
AWS_EC2_API Aws::String SerializePayload() const override
void SetRestorableByUserIds(Aws::Vector< Aws::String > &&value)
DescribeSnapshotsRequest & WithNextToken(Aws::String &&value)
const Aws::Vector< Aws::String > & GetOwnerIds() const
void SetFilters(const Aws::Vector< Filter > &value)
DescribeSnapshotsRequest & WithSnapshotIds(Aws::Vector< Aws::String > &&value)
DescribeSnapshotsRequest & AddOwnerIds(Aws::String &&value)
DescribeSnapshotsRequest & WithOwnerIds(const Aws::Vector< Aws::String > &value)
DescribeSnapshotsRequest & AddSnapshotIds(const char *value)
DescribeSnapshotsRequest & WithNextToken(const char *value)
DescribeSnapshotsRequest & AddOwnerIds(const Aws::String &value)
const Aws::Vector< Filter > & GetFilters() const
DescribeSnapshotsRequest & WithOwnerIds(Aws::Vector< Aws::String > &&value)
DescribeSnapshotsRequest & WithRestorableByUserIds(const Aws::Vector< Aws::String > &value)
void SetOwnerIds(const Aws::Vector< Aws::String > &value)
void SetSnapshotIds(Aws::Vector< Aws::String > &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector