AWS SDK for C++

AWS SDK for C++ Version 1.11.788

Loading...
Searching...
No Matches
ListGatewaysResult.h
1
6#pragma once
7#include <aws/backup-gateway/BackupGateway_EXPORTS.h>
8#include <aws/backup-gateway/model/Gateway.h>
9#include <aws/core/http/HttpResponse.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/core/utils/memory/stl/AWSVector.h>
12
13#include <utility>
14
15namespace Aws {
16template <typename RESULT_TYPE>
17class AmazonWebServiceResult;
18
19namespace Utils {
20namespace Json {
21class JsonValue;
22} // namespace Json
23} // namespace Utils
24namespace BackupGateway {
25namespace Model {
27 public:
28 AWS_BACKUPGATEWAY_API ListGatewaysResult() = default;
31
33
36 inline const Aws::Vector<Gateway>& GetGateways() const { return m_gateways; }
37 template <typename GatewaysT = Aws::Vector<Gateway>>
38 void SetGateways(GatewaysT&& value) {
39 m_gatewaysHasBeenSet = true;
40 m_gateways = std::forward<GatewaysT>(value);
41 }
42 template <typename GatewaysT = Aws::Vector<Gateway>>
43 ListGatewaysResult& WithGateways(GatewaysT&& value) {
44 SetGateways(std::forward<GatewaysT>(value));
45 return *this;
46 }
47 template <typename GatewaysT = Gateway>
48 ListGatewaysResult& AddGateways(GatewaysT&& value) {
49 m_gatewaysHasBeenSet = true;
50 m_gateways.emplace_back(std::forward<GatewaysT>(value));
51 return *this;
52 }
54
56
62 inline const Aws::String& GetNextToken() const { return m_nextToken; }
63 template <typename NextTokenT = Aws::String>
64 void SetNextToken(NextTokenT&& value) {
65 m_nextTokenHasBeenSet = true;
66 m_nextToken = std::forward<NextTokenT>(value);
67 }
68 template <typename NextTokenT = Aws::String>
69 ListGatewaysResult& WithNextToken(NextTokenT&& value) {
70 SetNextToken(std::forward<NextTokenT>(value));
71 return *this;
72 }
74
76
77 inline const Aws::String& GetRequestId() const { return m_requestId; }
78 template <typename RequestIdT = Aws::String>
79 void SetRequestId(RequestIdT&& value) {
80 m_requestIdHasBeenSet = true;
81 m_requestId = std::forward<RequestIdT>(value);
82 }
83 template <typename RequestIdT = Aws::String>
84 ListGatewaysResult& WithRequestId(RequestIdT&& value) {
85 SetRequestId(std::forward<RequestIdT>(value));
86 return *this;
87 }
89 inline Aws::Http::HttpResponseCode GetHttpResponseCode() const { return m_HttpResponseCode; }
90
91 private:
92 Aws::Vector<Gateway> m_gateways;
93
94 Aws::String m_nextToken;
95
96 Aws::String m_requestId;
97 Aws::Http::HttpResponseCode m_HttpResponseCode;
98 bool m_gatewaysHasBeenSet = false;
99 bool m_nextTokenHasBeenSet = false;
100 bool m_requestIdHasBeenSet = false;
101};
102
103} // namespace Model
104} // namespace BackupGateway
105} // namespace Aws
Aws::Http::HttpResponseCode GetHttpResponseCode() const
const Aws::Vector< Gateway > & GetGateways() const
ListGatewaysResult & WithNextToken(NextTokenT &&value)
ListGatewaysResult & WithGateways(GatewaysT &&value)
AWS_BACKUPGATEWAY_API ListGatewaysResult()=default
ListGatewaysResult & WithRequestId(RequestIdT &&value)
AWS_BACKUPGATEWAY_API ListGatewaysResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
AWS_BACKUPGATEWAY_API ListGatewaysResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
ListGatewaysResult & AddGateways(GatewaysT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue