AWS SDK for C++

AWS SDK for C++ Version 1.11.685

Loading...
Searching...
No Matches
ListRegistriesResult.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/glue/Glue_EXPORTS.h>
10#include <aws/glue/model/RegistryListItem.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 Glue {
24namespace Model {
26 public:
27 AWS_GLUE_API ListRegistriesResult() = default;
30
32
36 inline const Aws::Vector<RegistryListItem>& GetRegistries() const { return m_registries; }
37 template <typename RegistriesT = Aws::Vector<RegistryListItem>>
38 void SetRegistries(RegistriesT&& value) {
39 m_registriesHasBeenSet = true;
40 m_registries = std::forward<RegistriesT>(value);
41 }
42 template <typename RegistriesT = Aws::Vector<RegistryListItem>>
43 ListRegistriesResult& WithRegistries(RegistriesT&& value) {
44 SetRegistries(std::forward<RegistriesT>(value));
45 return *this;
46 }
47 template <typename RegistriesT = RegistryListItem>
48 ListRegistriesResult& AddRegistries(RegistriesT&& value) {
49 m_registriesHasBeenSet = true;
50 m_registries.emplace_back(std::forward<RegistriesT>(value));
51 return *this;
52 }
54
56
60 inline const Aws::String& GetNextToken() const { return m_nextToken; }
61 template <typename NextTokenT = Aws::String>
62 void SetNextToken(NextTokenT&& value) {
63 m_nextTokenHasBeenSet = true;
64 m_nextToken = std::forward<NextTokenT>(value);
65 }
66 template <typename NextTokenT = Aws::String>
67 ListRegistriesResult& WithNextToken(NextTokenT&& value) {
68 SetNextToken(std::forward<NextTokenT>(value));
69 return *this;
70 }
72
74
75 inline const Aws::String& GetRequestId() const { return m_requestId; }
76 template <typename RequestIdT = Aws::String>
77 void SetRequestId(RequestIdT&& value) {
78 m_requestIdHasBeenSet = true;
79 m_requestId = std::forward<RequestIdT>(value);
80 }
81 template <typename RequestIdT = Aws::String>
82 ListRegistriesResult& WithRequestId(RequestIdT&& value) {
83 SetRequestId(std::forward<RequestIdT>(value));
84 return *this;
85 }
87 private:
89 bool m_registriesHasBeenSet = false;
90
91 Aws::String m_nextToken;
92 bool m_nextTokenHasBeenSet = false;
93
94 Aws::String m_requestId;
95 bool m_requestIdHasBeenSet = false;
96};
97
98} // namespace Model
99} // namespace Glue
100} // namespace Aws
AWS_GLUE_API ListRegistriesResult()=default
ListRegistriesResult & WithRegistries(RegistriesT &&value)
ListRegistriesResult & WithRequestId(RequestIdT &&value)
const Aws::Vector< RegistryListItem > & GetRegistries() const
ListRegistriesResult & WithNextToken(NextTokenT &&value)
AWS_GLUE_API ListRegistriesResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
ListRegistriesResult & AddRegistries(RegistriesT &&value)
AWS_GLUE_API ListRegistriesResult & operator=(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