AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
DescribeFileSystemsResult.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/elasticfilesystem/EFS_EXPORTS.h>
10#include <aws/elasticfilesystem/model/FileSystemDescription.h>
11
12#include <utility>
13
14namespace Aws {
15template <typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils {
19namespace Json {
20class JsonValue;
21} // namespace Json
22} // namespace Utils
23namespace EFS {
24namespace Model {
26 public:
27 AWS_EFS_API DescribeFileSystemsResult() = default;
30
32
35 inline const Aws::String& GetMarker() const { return m_marker; }
36 template <typename MarkerT = Aws::String>
37 void SetMarker(MarkerT&& value) {
38 m_markerHasBeenSet = true;
39 m_marker = std::forward<MarkerT>(value);
40 }
41 template <typename MarkerT = Aws::String>
43 SetMarker(std::forward<MarkerT>(value));
44 return *this;
45 }
47
49
52 inline const Aws::Vector<FileSystemDescription>& GetFileSystems() const { return m_fileSystems; }
53 template <typename FileSystemsT = Aws::Vector<FileSystemDescription>>
54 void SetFileSystems(FileSystemsT&& value) {
55 m_fileSystemsHasBeenSet = true;
56 m_fileSystems = std::forward<FileSystemsT>(value);
57 }
58 template <typename FileSystemsT = Aws::Vector<FileSystemDescription>>
60 SetFileSystems(std::forward<FileSystemsT>(value));
61 return *this;
62 }
63 template <typename FileSystemsT = FileSystemDescription>
65 m_fileSystemsHasBeenSet = true;
66 m_fileSystems.emplace_back(std::forward<FileSystemsT>(value));
67 return *this;
68 }
70
72
77 inline const Aws::String& GetNextMarker() const { return m_nextMarker; }
78 template <typename NextMarkerT = Aws::String>
79 void SetNextMarker(NextMarkerT&& value) {
80 m_nextMarkerHasBeenSet = true;
81 m_nextMarker = std::forward<NextMarkerT>(value);
82 }
83 template <typename NextMarkerT = Aws::String>
85 SetNextMarker(std::forward<NextMarkerT>(value));
86 return *this;
87 }
89
91
92 inline const Aws::String& GetRequestId() const { return m_requestId; }
93 template <typename RequestIdT = Aws::String>
94 void SetRequestId(RequestIdT&& value) {
95 m_requestIdHasBeenSet = true;
96 m_requestId = std::forward<RequestIdT>(value);
97 }
98 template <typename RequestIdT = Aws::String>
100 SetRequestId(std::forward<RequestIdT>(value));
101 return *this;
102 }
104 private:
105 Aws::String m_marker;
106
108
109 Aws::String m_nextMarker;
110
111 Aws::String m_requestId;
112 bool m_markerHasBeenSet = false;
113 bool m_fileSystemsHasBeenSet = false;
114 bool m_nextMarkerHasBeenSet = false;
115 bool m_requestIdHasBeenSet = false;
116};
117
118} // namespace Model
119} // namespace EFS
120} // namespace Aws
DescribeFileSystemsResult & AddFileSystems(FileSystemsT &&value)
DescribeFileSystemsResult & WithFileSystems(FileSystemsT &&value)
DescribeFileSystemsResult & WithRequestId(RequestIdT &&value)
DescribeFileSystemsResult & WithMarker(MarkerT &&value)
DescribeFileSystemsResult & WithNextMarker(NextMarkerT &&value)
AWS_EFS_API DescribeFileSystemsResult()=default
AWS_EFS_API DescribeFileSystemsResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
const Aws::Vector< FileSystemDescription > & GetFileSystems() const
AWS_EFS_API DescribeFileSystemsResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue