AWS SDK for C++

AWS SDK for C++ Version 1.11.788

Loading...
Searching...
No Matches
DescribeIntegrationsResult.h
1
6#pragma once
7#include <aws/core/http/HttpResponse.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/rds/RDS_EXPORTS.h>
11#include <aws/rds/model/Integration.h>
12#include <aws/rds/model/ResponseMetadata.h>
13
14#include <utility>
15
16namespace Aws {
17template <typename RESULT_TYPE>
18class AmazonWebServiceResult;
19
20namespace Utils {
21namespace Xml {
22class XmlDocument;
23} // namespace Xml
24} // namespace Utils
25namespace RDS {
26namespace Model {
28 public:
29 AWS_RDS_API DescribeIntegrationsResult() = default;
32
34
38 inline const Aws::String& GetMarker() const { return m_marker; }
39 template <typename MarkerT = Aws::String>
40 void SetMarker(MarkerT&& value) {
41 m_markerHasBeenSet = true;
42 m_marker = std::forward<MarkerT>(value);
43 }
44 template <typename MarkerT = Aws::String>
46 SetMarker(std::forward<MarkerT>(value));
47 return *this;
48 }
50
52
55 inline const Aws::Vector<Integration>& GetIntegrations() const { return m_integrations; }
56 template <typename IntegrationsT = Aws::Vector<Integration>>
57 void SetIntegrations(IntegrationsT&& value) {
58 m_integrationsHasBeenSet = true;
59 m_integrations = std::forward<IntegrationsT>(value);
60 }
61 template <typename IntegrationsT = Aws::Vector<Integration>>
63 SetIntegrations(std::forward<IntegrationsT>(value));
64 return *this;
65 }
66 template <typename IntegrationsT = Integration>
68 m_integrationsHasBeenSet = true;
69 m_integrations.emplace_back(std::forward<IntegrationsT>(value));
70 return *this;
71 }
73
75
76 inline const ResponseMetadata& GetResponseMetadata() const { return m_responseMetadata; }
77 template <typename ResponseMetadataT = ResponseMetadata>
78 void SetResponseMetadata(ResponseMetadataT&& value) {
79 m_responseMetadataHasBeenSet = true;
80 m_responseMetadata = std::forward<ResponseMetadataT>(value);
81 }
82 template <typename ResponseMetadataT = ResponseMetadata>
84 SetResponseMetadata(std::forward<ResponseMetadataT>(value));
85 return *this;
86 }
88 inline Aws::Http::HttpResponseCode GetHttpResponseCode() const { return m_HttpResponseCode; }
89
90 private:
91 Aws::String m_marker;
92
93 Aws::Vector<Integration> m_integrations;
94
95 ResponseMetadata m_responseMetadata;
96 Aws::Http::HttpResponseCode m_HttpResponseCode;
97 bool m_markerHasBeenSet = false;
98 bool m_integrationsHasBeenSet = false;
99 bool m_responseMetadataHasBeenSet = false;
100};
101
102} // namespace Model
103} // namespace RDS
104} // namespace Aws
const Aws::Vector< Integration > & GetIntegrations() const
DescribeIntegrationsResult & WithResponseMetadata(ResponseMetadataT &&value)
AWS_RDS_API DescribeIntegrationsResult()=default
Aws::Http::HttpResponseCode GetHttpResponseCode() const
DescribeIntegrationsResult & WithIntegrations(IntegrationsT &&value)
AWS_RDS_API DescribeIntegrationsResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
AWS_RDS_API DescribeIntegrationsResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
DescribeIntegrationsResult & AddIntegrations(IntegrationsT &&value)
DescribeIntegrationsResult & WithMarker(MarkerT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Xml::XmlDocument XmlDocument