AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeVolumesRequest.h
1
6#pragma once
7#include <aws/fsx/FSx_EXPORTS.h>
8#include <aws/fsx/FSxRequest.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/fsx/model/VolumeFilter.h>
12#include <utility>
13
14namespace Aws
15{
16namespace FSx
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_FSX_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_FSX_API Aws::String SerializePayload() const override;
35
37
38
40
43 inline const Aws::Vector<Aws::String>& GetVolumeIds() const { return m_volumeIds; }
44 inline bool VolumeIdsHasBeenSet() const { return m_volumeIdsHasBeenSet; }
45 template<typename VolumeIdsT = Aws::Vector<Aws::String>>
46 void SetVolumeIds(VolumeIdsT&& value) { m_volumeIdsHasBeenSet = true; m_volumeIds = std::forward<VolumeIdsT>(value); }
47 template<typename VolumeIdsT = Aws::Vector<Aws::String>>
48 DescribeVolumesRequest& WithVolumeIds(VolumeIdsT&& value) { SetVolumeIds(std::forward<VolumeIdsT>(value)); return *this;}
49 template<typename VolumeIdsT = Aws::String>
50 DescribeVolumesRequest& AddVolumeIds(VolumeIdsT&& value) { m_volumeIdsHasBeenSet = true; m_volumeIds.emplace_back(std::forward<VolumeIdsT>(value)); return *this; }
52
54
58 inline const Aws::Vector<VolumeFilter>& GetFilters() const { return m_filters; }
59 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
60 template<typename FiltersT = Aws::Vector<VolumeFilter>>
61 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
62 template<typename FiltersT = Aws::Vector<VolumeFilter>>
63 DescribeVolumesRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
64 template<typename FiltersT = VolumeFilter>
65 DescribeVolumesRequest& AddFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters.emplace_back(std::forward<FiltersT>(value)); return *this; }
67
69
70 inline int GetMaxResults() const { return m_maxResults; }
71 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
72 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
73 inline DescribeVolumesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
75
77
78 inline const Aws::String& GetNextToken() const { return m_nextToken; }
79 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
80 template<typename NextTokenT = Aws::String>
81 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
82 template<typename NextTokenT = Aws::String>
83 DescribeVolumesRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
85 private:
86
87 Aws::Vector<Aws::String> m_volumeIds;
88 bool m_volumeIdsHasBeenSet = false;
89
91 bool m_filtersHasBeenSet = false;
92
93 int m_maxResults{0};
94 bool m_maxResultsHasBeenSet = false;
95
96 Aws::String m_nextToken;
97 bool m_nextTokenHasBeenSet = false;
98 };
99
100} // namespace Model
101} // namespace FSx
102} // namespace Aws
AWS_FSX_API DescribeVolumesRequest()=default
virtual const char * GetServiceRequestName() const override
DescribeVolumesRequest & WithNextToken(NextTokenT &&value)
const Aws::Vector< Aws::String > & GetVolumeIds() const
AWS_FSX_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_FSX_API Aws::String SerializePayload() const override
DescribeVolumesRequest & WithFilters(FiltersT &&value)
DescribeVolumesRequest & WithMaxResults(int value)
const Aws::Vector< VolumeFilter > & GetFilters() const
DescribeVolumesRequest & WithVolumeIds(VolumeIdsT &&value)
DescribeVolumesRequest & AddVolumeIds(VolumeIdsT &&value)
DescribeVolumesRequest & AddFilters(FiltersT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector