AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
DescribeIntegrationsResult.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/Integration.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 DescribeIntegrationsResult() = default;
30
32
35 inline const Aws::Vector<Integration>& GetIntegrations() const { return m_integrations; }
36 template <typename IntegrationsT = Aws::Vector<Integration>>
37 void SetIntegrations(IntegrationsT&& value) {
38 m_integrationsHasBeenSet = true;
39 m_integrations = std::forward<IntegrationsT>(value);
40 }
41 template <typename IntegrationsT = Aws::Vector<Integration>>
43 SetIntegrations(std::forward<IntegrationsT>(value));
44 return *this;
45 }
46 template <typename IntegrationsT = Integration>
48 m_integrationsHasBeenSet = true;
49 m_integrations.emplace_back(std::forward<IntegrationsT>(value));
50 return *this;
51 }
53
55
59 inline const Aws::String& GetMarker() const { return m_marker; }
60 template <typename MarkerT = Aws::String>
61 void SetMarker(MarkerT&& value) {
62 m_markerHasBeenSet = true;
63 m_marker = std::forward<MarkerT>(value);
64 }
65 template <typename MarkerT = Aws::String>
67 SetMarker(std::forward<MarkerT>(value));
68 return *this;
69 }
71
73
74 inline const Aws::String& GetRequestId() const { return m_requestId; }
75 template <typename RequestIdT = Aws::String>
76 void SetRequestId(RequestIdT&& value) {
77 m_requestIdHasBeenSet = true;
78 m_requestId = std::forward<RequestIdT>(value);
79 }
80 template <typename RequestIdT = Aws::String>
82 SetRequestId(std::forward<RequestIdT>(value));
83 return *this;
84 }
86 private:
87 Aws::Vector<Integration> m_integrations;
88
89 Aws::String m_marker;
90
91 Aws::String m_requestId;
92 bool m_integrationsHasBeenSet = false;
93 bool m_markerHasBeenSet = false;
94 bool m_requestIdHasBeenSet = false;
95};
96
97} // namespace Model
98} // namespace Glue
99} // namespace Aws
AWS_GLUE_API DescribeIntegrationsResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
const Aws::Vector< Integration > & GetIntegrations() const
DescribeIntegrationsResult & WithMarker(MarkerT &&value)
AWS_GLUE_API DescribeIntegrationsResult()=default
DescribeIntegrationsResult & AddIntegrations(IntegrationsT &&value)
DescribeIntegrationsResult & WithRequestId(RequestIdT &&value)
AWS_GLUE_API DescribeIntegrationsResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeIntegrationsResult & WithIntegrations(IntegrationsT &&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